summaryrefslogtreecommitdiff
path: root/platform/default
diff options
context:
space:
mode:
authorJason Wray <jason@mapbox.com>2017-02-20 16:32:54 -0500
committerJason Wray <jason@mapbox.com>2017-02-21 16:10:00 -0500
commitc7975e6a18b397df9918687ef8c8d0f76d00be76 (patch)
treefe26b3fd104b25b656ed38921af2d24cb5307b38 /platform/default
parent3b063d9be079cbe77e2772f2a7a38641cbfe4cf4 (diff)
downloadqtlocation-mapboxgl-c7975e6a18b397df9918687ef8c8d0f76d00be76.tar.gz
[ios] Clean-up conditionals for iOS <8
Diffstat (limited to 'platform/default')
-rw-r--r--platform/default/sqlite3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/default/sqlite3.cpp b/platform/default/sqlite3.cpp
index 18dd75966e..498ac02b2e 100644
--- a/platform/default/sqlite3.cpp
+++ b/platform/default/sqlite3.cpp
@@ -224,10 +224,10 @@ template <> void Statement::bind(int offset, const char *value) {
// We currently cannot use sqlite3_bind_blob64 / sqlite3_bind_text64 because they
// was introduced in SQLite 3.8.7, and we need to support earlier versions:
-// iOS 7.0: 3.7.13
+// iOS 8.0: 3.7.13
// iOS 8.2: 3.8.5
// According to http://stackoverflow.com/questions/14288128/what-version-of-sqlite-does-ios-provide,
-// the first iOS version with 3.8.7+ was 9.0, with 3.8.10.2.
+// the first iOS version with 3.8.7+ was 9.0, with 3.8.8.
void Statement::bind(int offset, const char * value, std::size_t length, bool retain) {
assert(impl);