On Fri, Jun 29, 2012 at 5:50 PM, Stephan Beal <sgb...@googlemail.com> wrote:

> caused by an unclosed /*, and the long-long (C++-specific) warning, but
> other than that everything looks good as far as i'm concerned.
>

One more bit of pedanticness:

lsmInt.h:35:

#else
# define LSM_DEBUG
#endif

"should probably" be:

#else
#  if !defined(LSM_DEBUG)
#   define LSM_DEBUG
#  endif
#endif

The problem is that gcc warns about redefinition when LSM_DEBUG is -Defined
vla CLI args.

-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to