We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 498b323 commit bddae7eCopy full SHA for bddae7e
src/Makefile.am
@@ -268,6 +268,7 @@ BITCOIN_CORE_H = \
268
util/tokenpipe.h \
269
util/trace.h \
270
util/translation.h \
271
+ util/types.h \
272
util/ui_change_type.h \
273
util/url.h \
274
util/vector.h \
src/util/types.h
@@ -0,0 +1,11 @@
1
+// Copyright (c) 2021 The Bitcoin Core developers
2
+// Distributed under the MIT software license, see the accompanying
3
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
+
5
+#ifndef BITCOIN_UTIL_TYPES_H
6
+#define BITCOIN_UTIL_TYPES_H
7
8
+template <class>
9
+inline constexpr bool ALWAYS_FALSE{false};
10
11
+#endif // BITCOIN_UTIL_TYPES_H
0 commit comments