summaryrefslogtreecommitdiff
path: root/test/style/filter.cpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-06-03 18:05:04 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-06-13 11:16:19 +0200
commit2bdecdf9f9a93c30f7d482f9993c47b86a9f5eb8 (patch)
treeef946d0f27b721f12662047beda6ff1d3cb31e23 /test/style/filter.cpp
parent9b6c2e6940ed33a87a20274eda19320e8c688fdf (diff)
downloadqtlocation-mapboxgl-2bdecdf9f9a93c30f7d482f9993c47b86a9f5eb8.tar.gz
[core] fix pedantic warning messages
Diffstat (limited to 'test/style/filter.cpp')
-rw-r--r--test/style/filter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/style/filter.cpp b/test/style/filter.cpp
index 6e7f62db1b..c013c36cd1 100644
--- a/test/style/filter.cpp
+++ b/test/style/filter.cpp
@@ -57,7 +57,7 @@ TEST(Filter, EqualsString) {
Filter f = parse("[\"==\", \"foo\", \"bar\"]");
ASSERT_TRUE(evaluate(f, {{ "foo", std::string("bar") }}));
ASSERT_FALSE(evaluate(f, {{ "foo", std::string("baz") }}));
-};
+}
TEST(Filter, EqualsNumber) {
Filter f = parse("[\"==\", \"foo\", 0]");