summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2017-03-27 17:54:46 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2017-04-01 12:57:06 +0300
commit939864cb901fa35c41e7a04e93988cf746e921a6 (patch)
treea29ce2e0046d2f3ad7323ab86194d986fb77f14a
parent1a9bccbb850c637583c18e7409e3b87a0dd9ff79 (diff)
downloadqtlocation-mapboxgl-939864cb901fa35c41e7a04e93988cf746e921a6.tar.gz
[core] Do not throw on dtors
Fix build on GCC6 + Ubuntu 16.04.
-rw-r--r--platform/default/sqlite3.cpp2
-rw-r--r--src/mbgl/util/thread_local.hpp5
2 files changed, 5 insertions, 2 deletions
diff --git a/platform/default/sqlite3.cpp b/platform/default/sqlite3.cpp
index 498ac02b2e..e33e7480a7 100644
--- a/platform/default/sqlite3.cpp
+++ b/platform/default/sqlite3.cpp
@@ -30,7 +30,7 @@ public:
const int error = sqlite3_close(db);
if (error != SQLITE_OK) {
- throw Exception { error, sqlite3_errmsg(db) };
+ mbgl::Log::Error(mbgl::Event::Database, "%s (Code %i)", sqlite3_errmsg(db), error);
}
}
diff --git a/src/mbgl/util/thread_local.hpp b/src/mbgl/util/thread_local.hpp
index 67e3842ec6..e6afc599ca 100644
--- a/src/mbgl/util/thread_local.hpp
+++ b/src/mbgl/util/thread_local.hpp
@@ -1,7 +1,9 @@
#pragma once
+#include <mbgl/util/logging.hpp>
#include <mbgl/util/noncopyable.hpp>
+#include <cassert>
#include <stdexcept>
#include <pthread.h>
@@ -29,7 +31,8 @@ public:
~ThreadLocal() {
if (pthread_key_delete(key)) {
- throw std::runtime_error("Failed to delete local storage key.");
+ Log::Error(Event::General, "Failed to delete local storage key.");
+ assert(false);
}
}