RemoveVolatile    133 Source/wtf/TypeTraits.cpp COMPILE_ASSERT((IsSameType<bool, RemoveVolatile<bool>::Type>::value), WTF_test_RemoveVolatile_bool);
RemoveVolatile    134 Source/wtf/TypeTraits.cpp COMPILE_ASSERT((!IsSameType<bool, RemoveVolatile<const bool>::Type>::value), WTF_test_RemoveVolatile_const_bool);
RemoveVolatile    135 Source/wtf/TypeTraits.cpp COMPILE_ASSERT((IsSameType<bool, RemoveVolatile<volatile bool>::Type>::value), WTF_test_RemoveVolatile_volatile_bool);
RemoveVolatile    226 Source/wtf/TypeTraits.h     template <typename T> struct RemoveVolatile<volatile T> {
RemoveVolatile    231 Source/wtf/TypeTraits.h         typedef typename RemoveVolatile<typename RemoveConst<T>::Type>::Type Type;