Home | History | Annotate | Download | only in gtest

Lines Matching refs:RemoveConst

7680 struct RemoveConst { typedef T type; };  // NOLINT
7682 struct RemoveConst<const T> { typedef T type; }; // NOLINT
7688 struct RemoveConst<const T[N]> {
7689 typedef typename RemoveConst<T>::type type[N];
7697 struct RemoveConst<T[N]> {
7698 typedef typename RemoveConst<T>::type type[N];
7702 // A handy wrapper around RemoveConst that works when the argument
7705 typename ::testing::internal::RemoveConst<T>::type