summaryrefslogtreecommitdiff
path: root/platform/default/sqlite3.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/default/sqlite3.hpp')
-rw-r--r--platform/default/sqlite3.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/default/sqlite3.hpp b/platform/default/sqlite3.hpp
index 57ee18e9f3..cdc6f87380 100644
--- a/platform/default/sqlite3.hpp
+++ b/platform/default/sqlite3.hpp
@@ -22,8 +22,8 @@ enum OpenFlag : int {
};
struct Exception : std::runtime_error {
- inline Exception(int err, const char *msg) : std::runtime_error(msg), code(err) {}
- inline Exception(int err, const std::string& msg) : std::runtime_error(msg), code(err) {}
+ Exception(int err, const char *msg) : std::runtime_error(msg), code(err) {}
+ Exception(int err, const std::string& msg) : std::runtime_error(msg), code(err) {}
const int code = 0;
};