diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-04-11 17:04:43 +0300 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-04-14 12:33:13 -0700 |
commit | 04a3a7383a0ced32b852a28337de56479a8af26a (patch) | |
tree | 9751aa5edd367d3344931241536d4249377f83ba /platform/default/sqlite3.hpp | |
parent | ef99b108fe51d108e789a484acae1c6bc30464c7 (diff) | |
download | qtlocation-mapboxgl-04a3a7383a0ced32b852a28337de56479a8af26a.tar.gz |
[core] Remove unused bool() functions
Diffstat (limited to 'platform/default/sqlite3.hpp')
-rw-r--r-- | platform/default/sqlite3.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/platform/default/sqlite3.hpp b/platform/default/sqlite3.hpp index 2cbc3cf48b..82e3ceff6d 100644 --- a/platform/default/sqlite3.hpp +++ b/platform/default/sqlite3.hpp @@ -46,8 +46,6 @@ public: ~Database(); Database &operator=(Database &&); - explicit operator bool() const; - void setBusyTimeout(std::chrono::milliseconds); void exec(const std::string &sql); Statement prepare(const char *query); @@ -69,8 +67,6 @@ public: ~Statement(); Statement &operator=(Statement &&); - explicit operator bool() const; - template <typename T> void bind(int offset, T value); // Text |