We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1653d1 commit d5ed645Copy full SHA for d5ed645
test/geo_quaternion.cpp
@@ -290,6 +290,8 @@ template<typename PlainObjectType> void check_const_correctness(const PlainObjec
290
291
// Regression for bug 1573
292
struct MovableClass {
293
+ // The following line is a workaround for gcc 4.7 and 4.8 (see bug 1573 comments).
294
+ static_assert(std::is_nothrow_move_constructible<Quaternionf>::value,"");
295
MovableClass() = default;
296
MovableClass(const MovableClass&) = default;
297
MovableClass(MovableClass&&) noexcept = default;
0 commit comments