summaryrefslogtreecommitdiff
path: root/platform/default/sqlite3.hpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-17 13:07:27 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-18 23:46:50 +0300
commitc20c1d6a6b3eb301db88ca3e74993f445cc4d839 (patch)
tree7011952bc5cc49d62b2be4b96ba3c3c7bbd3e54d /platform/default/sqlite3.hpp
parent41497e9c4174d310f3a62548f3cfeb9da2852849 (diff)
downloadqtlocation-mapboxgl-c20c1d6a6b3eb301db88ca3e74993f445cc4d839.tar.gz
[core] Avoid redundant 'inline' usage
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;
};