Merge branch 'develop'

This commit is contained in:
Ion Gaztañaga
2015-06-09 22:51:45 +02:00

View File

@@ -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
////////////////////////// //////////////////////////