4#ifndef TETL_TYPE_TRAITS_MAKE_UNSIGNED_HPP
5#define TETL_TYPE_TRAITS_MAKE_UNSIGNED_HPP
15struct make_unsigned<
signed char> {
16 using type =
unsigned char;
20struct make_unsigned<
signed short> {
21 using type =
unsigned short;
25struct make_unsigned<
signed int> {
26 using type =
unsigned int;
30struct make_unsigned<
signed long> {
31 using type =
unsigned long;
35struct make_unsigned<
signed long long> {
36 using type =
unsigned long long;
40struct make_unsigned<
unsigned char> {
41 using type =
unsigned char;
45struct make_unsigned<
unsigned short> {
46 using type =
unsigned short;
50struct make_unsigned<
unsigned int> {
51 using type =
unsigned int;
55struct make_unsigned<
unsigned long> {
56 using type =
unsigned long;
60struct make_unsigned<
unsigned long long> {
61 using type =
unsigned long long;
72template <
typename Type>
Definition adjacent_find.hpp:9
If T is an integral (except bool) or enumeration type, provides the member typedef type which is the ...
Definition make_unsigned.hpp:73