Home | History | Annotate | Download | only in test

Lines Matching refs:RemoveReference

182 using testing::internal::RemoveReference;
7235 // Tests that RemoveReference does not affect non-reference types.
7237 CompileAssertTypesEqual<int, RemoveReference<int>::type>();
7238 CompileAssertTypesEqual<const char, RemoveReference<const char>::type>();
7241 // Tests that RemoveReference removes reference from reference types.
7243 CompileAssertTypesEqual<int, RemoveReference<int&>::type>();
7244 CompileAssertTypesEqual<const char, RemoveReference<const char&>::type>();