OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AddParameterType
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
type_traits_detail.hpp
124
template <class U> struct
AddParameterType
{ typedef const U& type; };
125
template <class U> struct
AddParameterType
<U&> { typedef U& type; };
126
template <> struct
AddParameterType
<void> { typedef void type; };
/external/opencv3/modules/cudev/include/opencv2/cudev/util/detail/
type_traits.hpp
107
template <class U> struct
AddParameterType
{ typedef const U& type; };
108
template <class U> struct
AddParameterType
<U&> { typedef U& type; };
109
template <> struct
AddParameterType
<void> { typedef void type; };
Completed in 261 milliseconds