mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-06 05:55:08 +00:00
Add Conditional
This commit is contained in:
parent
04c3beba73
commit
0a1e3d1336
1 changed files with 4 additions and 2 deletions
|
@ -30,10 +30,12 @@ DEALINGS IN THE SOFTWARE.
|
|||
namespace utf8
|
||||
{
|
||||
namespace internal {
|
||||
template <bool B, typename U, typename F>
|
||||
using Conditional = typename std::conditional<B,U,F>::type;
|
||||
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
|
||||
template <typename T>
|
||||
using Decay = typename std::decay<T>::type;//std::decay_t in c++14
|
||||
} // namespace internal
|
||||
} // namespace utf8
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue