diff options
author | Jason Wray <jason@mapbox.com> | 2017-02-20 16:32:54 -0500 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2017-02-21 16:10:00 -0500 |
commit | c7975e6a18b397df9918687ef8c8d0f76d00be76 (patch) | |
tree | fe26b3fd104b25b656ed38921af2d24cb5307b38 /platform/default | |
parent | 3b063d9be079cbe77e2772f2a7a38641cbfe4cf4 (diff) | |
download | qtlocation-mapboxgl-c7975e6a18b397df9918687ef8c8d0f76d00be76.tar.gz |
[ios] Clean-up conditionals for iOS <8
Diffstat (limited to 'platform/default')
-rw-r--r-- | platform/default/sqlite3.cpp | 4 |
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); |