Bert Huijben <[email protected]> wrote: > int not; /* True if the NOT keyword is present */
"not" is a so-called alternative token for !. In C++, it's built into the language, and cannot be used as an identifier. In C, it is defined as a macro in iso646.h header. If nothing else, it's probably a poor choice for a variable name. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

