On Tue, Jan 16, 2018 at 4:10 PM, Richard Hipp <d...@sqlite.org> wrote:

> On 1/16/18, Matthew Towler <tow...@ccdc.cam.ac.uk> wrote:
> >
> > Firstly, here is a C++11 example application.
>
> Does not compile.  These are the errors:
>
> x2.cpp:53:2: warning: missing terminating " character
>  R"(    SELECT AbundanceId FROM[ABUNDANCE]
>   ^
> ...

x2.cpp:7:2: error: in C++98 ‘query_texts’ must be initialized by
> constructor, not by ‘{...}’
>

You're not compiling in C++11 mode, are you?
Probably use -std=c++11 or perhaps -std=gnu++11 on your g++ command line.
--DD
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to