Home
last modified time | relevance | path

Searched defs:RemoveConstRef (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/bcc/tests/cc/
H A Dcatch.hpp3969 template<typename T> struct RemoveConstRef{ typedef T type; }; struct
3970 template<typename T> struct RemoveConstRef<T&>{ typedef T type; }; struct
3971 template<typename T> struct RemoveConstRef<T const&>{ typedef T type; }; argument
3972 template<typename T> struct RemoveConstRef<T const>{ typedef T type; }; struct