Yes, didn't expect this was reproducible.
All I can think of is that somehow MSVS doesn't recognize this now as C
code.
Must be one of the settings in VS that has somehow changed.

RBS

On Tue, Feb 14, 2017 at 2:18 PM, Richard Hipp <d...@sqlite.org> wrote:

> On 2/13/17, Bart Smissaert <bart.smissa...@gmail.com> wrote:
> > Downloaded the latest 3.17.0 (sqlite-autoconf-3170000.tar.gz
> > <https://www.sqlite.org/2017/sqlite-autoconf-3170000.tar.gz>) and
> replaced
> > my old 3.16.2 sqlite3.c file in the VC. Now for some reason I get lots of
> > errors when building a Windows dll.
> > First one is at line 16116 in this code block:
> >
> > #define SQLITE_SKIP_UTF8(zIn) {
> >   if( (*(zIn++))>=0xc0 ){
> >     while( (*zIn & 0xc0)==0x80 ){ zIn++; }
> >   }
> > }
> >
> > Error 1 error C2059: syntax error : 'while'
> > Line 16116 is actually the one after the line with while.
>
> I'm not able to reproduce this problem.
>
> --
> D. Richard Hipp
> d...@sqlite.org
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
>
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to