diff options
author | Zsolt Bölöny <bolony.zsolt@gmail.com> | 2018-06-24 14:34:26 +0200 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2018-06-25 10:07:04 -0700 |
commit | bc6094eb5539971a7cf7e48c90996a52c89c5815 (patch) | |
tree | 6b90d7445981844591d2580dd25d9f7f656a33fa /test | |
parent | 279dd93f7cbd57adce60a97bdb760905e30f4580 (diff) | |
download | qtlocation-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')
-rw-r--r-- | test/storage/offline_database.test.cpp | 2 | ||||
-rw-r--r-- | test/style/style.test.cpp | 2 | ||||
-rw-r--r-- | test/style/style_layer.test.cpp | 2 |
3 files changed, 3 insertions, 3 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 } diff --git a/test/style/style.test.cpp b/test/style/style.test.cpp index 9bdab37ac6..f2055c88f8 100644 --- a/test/style/style.test.cpp +++ b/test/style/style.test.cpp @@ -65,7 +65,7 @@ TEST(Style, DuplicateSource) { try { style.addSource(std::make_unique<VectorSource>("sourceId", "mapbox://mapbox.mapbox-terrain-v2")); FAIL() << "Should not have been allowed to add a duplicate source id"; - } catch (std::runtime_error) { + } catch (const std::runtime_error&) { // Expected } } diff --git a/test/style/style_layer.test.cpp b/test/style/style_layer.test.cpp index 624ed088c3..61516a2de9 100644 --- a/test/style/style_layer.test.cpp +++ b/test/style/style_layer.test.cpp @@ -285,7 +285,7 @@ TEST(Layer, DuplicateLayer) { try { style.addLayer(std::make_unique<LineLayer>("line", "unusedsource")); FAIL() << "Should not have been allowed to add a duplicate layer id"; - } catch (const std::runtime_error e) { + } catch (const std::runtime_error& e) { // Expected ASSERT_STREQ("Layer line already exists", e.what()); } |