13 constexpr
operator bool()
const{
15 static_assert(!meta::is_move_constructible<T>(),
"NonMovable<T>: T is move constructible");
16 static_assert(!meta::is_move_assignable<T>(),
"NonMovable<T>: T is move assignable");
Global namespace of the SCL.
NonMovable concept, a type is non movable if it is neither move constructible nor move assignable...