Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'drape/hw_texture_ios.mm')
-rw-r--r--drape/hw_texture_ios.mm9
1 files changed, 9 insertions, 0 deletions
diff --git a/drape/hw_texture_ios.mm b/drape/hw_texture_ios.mm
index f51430cf79..68ac455b97 100644
--- a/drape/hw_texture_ios.mm
+++ b/drape/hw_texture_ios.mm
@@ -11,8 +11,17 @@
#import <Foundation/NSValue.h>
#include <boost/integer_traits.hpp>
+
+/// @todo(greshilov): delete this hack for next boost version (>1.65.0)
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wc++11-narrowing"
+#endif
#include <boost/gil/algorithm.hpp>
#include <boost/gil/typedefs.hpp>
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif
using boost::gil::gray8c_pixel_t;
using boost::gil::gray8_pixel_t;