summaryrefslogtreecommitdiff
path: root/deps/tao_tuple/28626e99/include/tao/seq/values.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/tao_tuple/28626e99/include/tao/seq/values.hpp')
-rw-r--r--deps/tao_tuple/28626e99/include/tao/seq/values.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/deps/tao_tuple/28626e99/include/tao/seq/values.hpp b/deps/tao_tuple/28626e99/include/tao/seq/values.hpp
new file mode 100644
index 0000000000..d7e3b5d8a1
--- /dev/null
+++ b/deps/tao_tuple/28626e99/include/tao/seq/values.hpp
@@ -0,0 +1,19 @@
+// The Art of C++ / Sequences
+// Copyright (c) 2015 Daniel Frey
+
+#ifndef TAOCPP_SEQUENCES_INCLUDE_VALUES_HPP
+#define TAOCPP_SEQUENCES_INCLUDE_VALUES_HPP
+
+namespace tao
+{
+ namespace seq
+ {
+ template< typename T, T... Ns >
+ struct values
+ {
+ static constexpr T data[] = { Ns... };
+ };
+ }
+}
+
+#endif // TAOCPP_SEQUENCES_INCLUDE_VALUES_HPP