You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function emit works without Qt and Qt works without vsqlite++. When using both together, you get the following compiler error:
In file included from src/./vsqlite++/include/sqlite/execute.hpp:35,
from src/./database.hpp:5,
from src/./todo.hpp:8,
from src/gui/mainwindow.cpp:9:
src/vsqlite++/include/sqlite/command.hpp:80:19: error: expected unqualified-id before ‘)’ token
bool emit();
A simple renaming of the function emit(), which just forwards step(), in vsqlite++ solves this error.
Is there any reason for sqlite::command::emit or will it stay equal to sqlite::command::step?
The text was updated successfully, but these errors were encountered:
Qt supports disabling its signals and slots macros, by adding CONFIG += no_keywords in the qproject file, or passing directly a define or macro to the compiler.
The function emit works without Qt and Qt works without vsqlite++. When using both together, you get the following compiler error:
A simple renaming of the function
emit()
, which just forwardsstep()
, in vsqlite++ solves this error.Is there any reason for
sqlite::command::emit
or will it stay equal tosqlite::command::step
?The text was updated successfully, but these errors were encountered: