1#pragma once
2
3#include <cstdint>
4#include <type_traits>
5
6namespace mbgl {
7
8template<typename T>
9constexpr auto underlying_type(T t) -> typename std::underlying_type_t<T> {
10 return typename std::underlying_type_t<T>(t);
11}
12
13template <typename T> struct is_utf16char_like: std::false_type {};
14template <typename T> struct is_utf16char_like<const T>: is_utf16char_like<T> {};
15template <> struct is_utf16char_like<char16_t>: std::true_type {};
16template <> struct is_utf16char_like<wchar_t>: std::true_type {};
17template <> struct is_utf16char_like<uint16_t>: std::true_type {};
18
19template <typename T> using is_utf16char_like_pointer = std::integral_constant<bool, std::is_pointer<T>::value
20 && is_utf16char_like<typename std::remove_pointer<T>::type>::value>;
21
22template <class OutPointer, class InChar>
23typename std::enable_if<is_utf16char_like<InChar>::value && is_utf16char_like_pointer<OutPointer>::value, OutPointer>::type utf16char_cast(InChar *in)
24{
25 return reinterpret_cast<OutPointer>(in);
26}
27
28} // namespace mbgl
29

source code of qtlocation/src/3rdparty/mapbox-gl-native/include/mbgl/util/traits.hpp