summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-07-01 05:20:22 -0700
committerKonstantin Käfer <mail@kkaefer.com>2014-07-01 05:20:22 -0700
commit006bc98ffce26c3f6fa85f0defac0fb553fb1128 (patch)
treebdf228f35393c085c09901d2eb1b647285e9ce5d /src
parent409a6ec6f4c70a4fdb2d2cba46cebafa9ba6e144 (diff)
downloadqtlocation-mapboxgl-006bc98ffce26c3f6fa85f0defac0fb553fb1128.tar.gz
ignore boost warnings for lexical_cast
Diffstat (limited to 'src')
-rw-r--r--src/style/value.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/style/value.cpp b/src/style/value.cpp
index 87dfb128d0..f41acb3a06 100644
--- a/src/style/value.cpp
+++ b/src/style/value.cpp
@@ -1,6 +1,11 @@
#include <llmr/style/value.hpp>
+#pragma GCC diagnostic push
+#ifndef __clang__
+#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
+#endif
#include <boost/lexical_cast.hpp>
+#pragma GCC diagnostic pop
llmr::Value llmr::parseValue(pbf data) {
while (data.next())