| Index: Source/wtf/TypeTraits.cpp
|
| diff --git a/Source/wtf/TypeTraits.cpp b/Source/wtf/TypeTraits.cpp
|
| index cba2f96bdda13b1a84966c4a9ca642865951db42..fe757fab93df12a7fad39d3752b20c4311a47d21 100644
|
| --- a/Source/wtf/TypeTraits.cpp
|
| +++ b/Source/wtf/TypeTraits.cpp
|
| @@ -223,6 +223,7 @@ static_assert((!IsSameType<int, RemovePointer<int**>::Type>::value), "RemovePoin
|
|
|
| static_assert((IsSameType<int, RemoveReference<int>::Type>::value), "RemoveReference should not modify non-reference types");
|
| static_assert((IsSameType<int, RemoveReference<int&>::Type>::value), "RemoveReference should produce the corresponding non-reference type");
|
| +static_assert((IsSameType<int, RemoveReference<int&&>::Type>::value), "RemoveReference should produce the corresponding non-reference type");
|
|
|
|
|
| typedef int IntArray[];
|
|
|