mirror of
https://github.com/boostorg/move.git
synced 2025-08-01 21:34:27 +02:00
Merge branch 'develop'
This commit is contained in:
@@ -343,6 +343,17 @@ template<class T>
|
||||
struct is_pointer<T*>
|
||||
{ static const bool value = true; };
|
||||
|
||||
//////////////////////////
|
||||
// is_const
|
||||
//////////////////////////
|
||||
template<class T>
|
||||
struct is_const
|
||||
{ static const bool value = false; };
|
||||
|
||||
template<class T>
|
||||
struct is_const<const T>
|
||||
{ static const bool value = true; };
|
||||
|
||||
//////////////////////////
|
||||
// unvoid_ref
|
||||
//////////////////////////
|
||||
|
Reference in New Issue
Block a user