Browse Source

Fix missing "std::"

Marc Legendre 9 years ago
parent
commit
85bfb6007d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/BansheeUtility/Include/BsAny.h

+ 2 - 2
Source/BansheeUtility/Include/BsAny.h

@@ -52,7 +52,7 @@ namespace BansheeEngine
 			:mData(bs_new<Data<ValueType>>(value))
 		{ }
 
-		Any(nullptr_t)
+		Any(std::nullptr_t)
 			:mData(nullptr)
 		{ }
 
@@ -186,4 +186,4 @@ namespace BansheeEngine
 	}
 
 	/** @} */
-}
+}