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
If Column.h is included in a file compiled in clang in c++11 mode with -Weverything set it generates a warning that auto-generating copy constructors when a destructor has been defined is depreciated.
Warning text:
/home/tycho/MCServer/src/../lib/SQLiteCpp/include/SQLiteCpp/Column.h:54:13: warning:
definition of implicit copy constructor for 'Column' is deprecated because
it has a user-declared destructor [-Wdeprecated]
virtual ~Column() noexcept; // nothrow
^
/home/tycho/MCServer/src/../lib/SQLiteCpp/include/SQLiteCpp/Database.h:177:16: note:
implicit copy constructor for 'Column' first required here
return execAndGet(aQuery.c_str());
^
The text was updated successfully, but these errors were encountered:
Yes, I see. Thanks for reporting!
Le 8 sept. 2014 20:40, "worktycho" notifications@github.com a écrit :
If Column.h is included in a file compiled in clang in c++11 mode with
-Weverything set it generates a warning that auto-generating copy
constructors when a destructor has been defined is depreciated.
Warning text:
/home/tycho/MCServer/src/../lib/SQLiteCpp/include/SQLiteCpp/Column.h:54:13: warning:
definition of implicit copy constructor for 'Column' is deprecated because
it has a user-declared destructor [-Wdeprecated]
virtual ~Column() noexcept; // nothrow
^
/home/tycho/MCServer/src/../lib/SQLiteCpp/include/SQLiteCpp/Database.h:177:16: note:
implicit copy constructor for 'Column' first required here
return execAndGet(aQuery.c_str());
^
—
Reply to this email directly or view it on GitHub #27.
If Column.h is included in a file compiled in clang in c++11 mode with -Weverything set it generates a warning that auto-generating copy constructors when a destructor has been defined is depreciated.
Warning text:
The text was updated successfully, but these errors were encountered: