summaryrefslogtreecommitdiff
path: root/test/enumDetailsData.hpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-04-29 19:07:11 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2023-04-29 19:07:11 +0100
commit5a0b3927a33807cca4c77c40eb873f8a3b51b0b0 (patch)
tree4af0585ee8f8f468ab10c0a4fe9994fb30b79599 /test/enumDetailsData.hpp
parentDunno how, but some DOS new lines got in here! (diff)
downloadilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.tar.bz2
ilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.tar.xz
ilt-5a0b3927a33807cca4c77c40eb873f8a3b51b0b0.zip
Drop .hpp for header only things
Half of them acquired a .cpp part anyway
Diffstat (limited to 'test/enumDetailsData.hpp')
-rw-r--r--test/enumDetailsData.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/enumDetailsData.hpp b/test/enumDetailsData.hpp
deleted file mode 100644
index 0e98af5..0000000
--- a/test/enumDetailsData.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-#include <enumDetails.hpp>
-
-enum GlobalUnscoped { aa, b, c };
-enum class GlobalScoped { aa, b, c };
-namespace ns {
- enum Unscoped { aa, b, c };
- enum class Scoped { aa, b, c };
-}
-namespace test1 {
- enum class DefaultDense { a, bee, ci, de };
-}
-namespace test2 {
- enum class NumberedSparse { a = 0, bee = 3, ci = -20, de = 100 };
-}
-
-template<> struct EnumValueCollection<test2::NumberedSparse> {
- // Any ordered integer_sequence which includes all enumeration values
- using Vs = std::integer_sequence<int, -100, -20, 0, 3, 10, 100, 1000>;
-};