mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-06 05:55:08 +00:00
add namespace internal
This commit is contained in:
parent
78cfc95ffa
commit
1c3c41f84a
1 changed files with 5 additions and 2 deletions
|
@ -29,9 +29,12 @@ DEALINGS IN THE SOFTWARE.
|
|||
|
||||
namespace utf8
|
||||
{
|
||||
template<typename T>
|
||||
namespace internal {
|
||||
template <typename T>
|
||||
using Iterator_category = typename std::iterator_traits<T>::iterator_category;
|
||||
|
||||
template <typename T>
|
||||
using Decay = typename std::decay<T>::type;//std::decay_t in c++14
|
||||
} // namespace internal
|
||||
} // namespace utf8
|
||||
|
||||
#endif // header guard
|
||||
|
|
Loading…
Add table
Reference in a new issue