fix typo
This commit is contained in:
		@@ -178,7 +178,7 @@ using std::make_unique;
 | 
			
		||||
template<typename T, typename... Args>
 | 
			
		||||
std::unique_ptr<T> make_unique(Args &&... args)
 | 
			
		||||
{
 | 
			
		||||
    static_assert(!std::is_array<T>::value, "arrays to not supported");
 | 
			
		||||
    static_assert(!std::is_array<T>::value, "arrays not supported");
 | 
			
		||||
    return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
 | 
			
		||||
}
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user