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