lib/sqlite/Util: move into namespace
This commit is contained in:
parent
5a3828ed4a
commit
34d483a34a
|
@ -26,6 +26,8 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
namespace Sqlite {
|
||||
|
||||
/**
|
||||
* Throws #SqliteError on error.
|
||||
*/
|
||||
|
@ -158,4 +160,6 @@ ExecuteForEach(sqlite3_stmt *stmt, F &&f)
|
|||
}
|
||||
}
|
||||
|
||||
} // namespace Sqlite
|
||||
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
using namespace Sqlite;
|
||||
|
||||
enum sticker_sql {
|
||||
STICKER_SQL_GET,
|
||||
STICKER_SQL_LIST,
|
||||
|
|
Loading…
Reference in New Issue