I am playing with C ++ 11 right now and have discovered the following problem using lambda as a callback to sqlite. When capturing a vector variable inside lambda, I get an error that the signatures do not match. Not using this variable in lambda ( [] instead of [&ret] and not using ret inside), it works fine.
vector<SomeClass> ret; char *err = nullptr; int res = sqlite3_exec(db, "some sql query, doesn't matter", [&ret](void *unused, int argc, char **argv, char **columnName) -> int { ret.push_back(SomeClass()); return 0; }, nullptr, &err);
This is the error I get:
cannot convert 'TestClass::testMethod()::<lambda(void*, int, char**, char**)>' to 'int (*)(void*, int, char**, char**)' for argument '3' to 'int sqlite3_exec(sqlite3*, const char*, int (*)(void*, int, char**, char**), void*, char**)'
The GCC version is "gcc (XvidVideo.RU - GCC 4.6.1 i686-pc-mingw32) 4.6.1 20110625 (preliminary publication)" on Windows.
Why does it matter?
source share