summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Polyfills/type_traits/is_signed.hpp
blob: fbb701cf785d43791c906407c1e0f42780a5371e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// ArduinoJson - https://arduinojson.org
// Copyright Benoit Blanchon 2014-2021
// MIT License

#pragma once

#include "integral_constant.hpp"
namespace ARDUINOJSON_NAMESPACE {

template <typename>
struct is_signed : false_type {};

template <>
struct is_signed<char> : true_type {};

template <>
struct is_signed<signed char> : true_type {};

template <>
struct is_signed<signed short> : true_type {};

template <>
struct is_signed<signed int> : true_type {};

template <>
struct is_signed<signed long> : true_type {};

template <>
struct is_signed<float> : true_type {};

template <>
struct is_signed<double> : true_type {};

#if ARDUINOJSON_HAS_LONG_LONG
template <>
struct is_signed<signed long long> : true_type {};
#endif

#if ARDUINOJSON_HAS_INT64
template <>
struct is_signed<signed __int64> : true_type {};
#endif
}  // namespace ARDUINOJSON_NAMESPACE