My Project
has_unique_object_representations.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_HAS_UNIQUE_OBJECT_REPRESENTATION_HPP
29 #define BSL_HAS_UNIQUE_OBJECT_REPRESENTATION_HPP
30 
31 #include "bool_constant.hpp"
32 #include "remove_cvext.hpp"
33 
34 namespace bsl
35 {
47  template<typename T>
49  public bool_constant<__has_unique_object_representations(remove_cvext_t<T>)>
50  {};
51 }
52 
53 #endif
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition: integral_constant.hpp:45
If the provided type is a class type, provides the member constant value equal to true....
Definition: has_unique_object_representations.hpp:48