Fix build on gcc < 5 (std::is_trivially_copyable missing)
[deliverable/binutils-gdb.git] / gdb / common / traits.h
CommitLineData
9c541725
PA
1/* Copyright (C) 2017 Free Software Foundation, Inc.
2
3 This file is part of GDB.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18#ifndef COMMON_TRAITS_H
19#define COMMON_TRAITS_H
20
22796e97
PA
21#include <type_traits>
22
debed3db
PA
23/* GCC does not understand __has_feature. */
24#if !defined(__has_feature)
25# define __has_feature(x) 0
26#endif
27
28/* HAVE_IS_TRIVIALLY_COPYABLE is defined as 1 iff
29 std::is_trivially_copyable is available. GCC only implemented it
30 in GCC 5. */
31#if (__has_feature(is_trivially_copyable) \
32 || (defined __GNUC__ && __GNUC__ >= 5))
33# define HAVE_IS_TRIVIALLY_COPYABLE 1
34#endif
35
9c541725
PA
36namespace gdb {
37
38/* Pre C++14-safe (CWG 1558) version of C++17's std::void_t. See
39 <http://en.cppreference.com/w/cpp/types/void_t>. */
40
41template<typename... Ts>
42struct make_void { typedef void type; };
43
44template<typename... Ts>
45using void_t = typename make_void<Ts...>::type;
46
22796e97 47/* A few trait helpers, mainly stolen from libstdc++. Uppercase
b0b92aeb
PA
48 because "and/or", etc. are reserved keywords. */
49
50template<typename Predicate>
51struct Not : public std::integral_constant<bool, !Predicate::value>
52{};
53
54template<typename...>
55struct Or;
56
57template<>
58struct Or<> : public std::false_type
59{};
60
61template<typename B1>
62struct Or<B1> : public B1
63{};
64
65template<typename B1, typename B2>
66struct Or<B1, B2>
67 : public std::conditional<B1::value, B1, B2>::type
68{};
69
70template<typename B1,typename B2,typename B3, typename... Bn>
71struct Or<B1, B2, B3, Bn...>
72 : public std::conditional<B1::value, B1, Or<B2, B3, Bn...>>::type
73{};
22796e97
PA
74
75template<typename...>
76struct And;
77
78template<>
79struct And<> : public std::true_type
80{};
81
82template<typename B1>
83struct And<B1> : public B1
84{};
85
86template<typename B1, typename B2>
87struct And<B1, B2>
88 : public std::conditional<B1::value, B2, B1>::type
89{};
90
91template<typename B1, typename B2, typename B3, typename... Bn>
92struct And<B1, B2, B3, Bn...>
93 : public std::conditional<B1::value, And<B2, B3, Bn...>, B1>::type
94{};
95
b0b92aeb
PA
96/* Concepts-light-like helper to make SFINAE logic easier to read. */
97template<typename Condition>
98using Requires = typename std::enable_if<Condition::value, void>::type;
9c541725
PA
99}
100
101#endif /* COMMON_TRAITS_H */
This page took 0.039798 seconds and 4 git commands to generate.