Support Class Library
A set of tools providing classes and utility
NonMovable.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace scl{
6  namespace concepts{
11  template <class T>
12  struct NonMovable{
13  constexpr operator bool() const{
14  using namespace scl::tools;
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");
17  return true;
18  }
19  };
20  }
21 }
Global namespace of the SCL.
Definition: alias.hpp:3
NonMovable concept, a type is non movable if it is neither move constructible nor move assignable...
Definition: NonMovable.h:12
General purpose tooling.
Definition: iostream.hpp:4