Home
last modified time | relevance | path

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

/external/sdv/vsomeip/third_party/boost/process/include/boost/process/detail/
Dexecute_impl.hpp54 struct has_wchar<First, Args...> struct
56 typedef has_wchar<Args...> next;
58 typename std::remove_reference<First>::type>::type res_type;
60 constexpr static bool my_value = is_wchar_t<res_type>::value;
61 constexpr static bool value = my_value || next::value;
63 typedef std::integral_constant<bool, value> type;
67 struct has_wchar<First> struct
70 typename std::remove_reference<First>::type>::type res_type;
72 constexpr static bool value = is_wchar_t<res_type>::value;
74 typedef std::integral_constant<bool, value> type;