Searched defs:RemoveConst (Results 1 - 1 of 1) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7679 struct RemoveConst { typedef T type; }; // NOLINT struct in namespace:testing::internal
7681 struct RemoveConst<const T> { typedef T type; }; // NOLINT struct in namespace:testing::internal
7687 struct RemoveConst<const T[N]> { struct in namespace:testing::internal
7688 typedef typename RemoveConst<T>::type type[N];
7696 struct RemoveConst<T[N]> { struct in namespace:testing::internal
7697 typedef typename RemoveConst<T>::type type[N];
7701 // A handy wrapper around RemoveConst that works when the argument
7704 typename ::testing::internal::RemoveConst<T>::type

Completed in 88 milliseconds