summaryrefslogtreecommitdiff
path: root/src/mbgl/programs/segment.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/programs/segment.hpp')
-rw-r--r--src/mbgl/programs/segment.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mbgl/programs/segment.hpp b/src/mbgl/programs/segment.hpp
index 13e206aa2a..908c0b5f3b 100644
--- a/src/mbgl/programs/segment.hpp
+++ b/src/mbgl/programs/segment.hpp
@@ -22,6 +22,11 @@ public:
indexLength(indexLength_),
sortKey(sortKey_) {}
+ // FIXME: clang-tidy-8 still complains here and clang-cl
+ // on Windows gives the error: "exception specification of
+ // explicitly defaulted move constructor does not match
+ // the calculated one" when marking this 'noexcept'.
+ // NOLINTNEXTLINE(performance-noexcept-move-constructor)
Segment(Segment&&) = default;
const std::size_t vertexOffset;