summaryrefslogtreecommitdiff
path: root/test/storage
diff options
context:
space:
mode:
authorZsolt Bölöny <bolony.zsolt@gmail.com>2018-06-24 14:34:26 +0200
committerJohn Firebaugh <john.firebaugh@gmail.com>2018-06-25 10:07:04 -0700
commitbc6094eb5539971a7cf7e48c90996a52c89c5815 (patch)
tree6b90d7445981844591d2580dd25d9f7f656a33fa /test/storage
parent279dd93f7cbd57adce60a97bdb760905e30f4580 (diff)
downloadqtlocation-mapboxgl-bc6094eb5539971a7cf7e48c90996a52c89c5815.tar.gz
[core] Fix GCC8's new -Wcatch-value warnings
Polymorphic types shouldn't be caught by value, as the warning message says. Catch them by constant reference instead.
Diffstat (limited to 'test/storage')
-rw-r--r--test/storage/offline_database.test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/storage/offline_database.test.cpp b/test/storage/offline_database.test.cpp
index 36b71bc4b4..10343ec305 100644
--- a/test/storage/offline_database.test.cpp
+++ b/test/storage/offline_database.test.cpp
@@ -631,7 +631,7 @@ TEST(OfflineDatabase, BatchInsertionMapboxTileCountExceeded) {
try {
db.putRegionResources(region.getID(), resources, status);
EXPECT_FALSE(true);
- } catch (MapboxTileLimitExceededException) {
+ } catch (const MapboxTileLimitExceededException&) {
// Expected
}