From abf136be66b78f9a1fb913dfad26225beeb2ca34 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 19 Aug 2022 19:51:50 -0400 Subject: add sol2 submodule; remove entityx to add submodule --- .../cxx11/c++11-test-variadic_templates-N2555.cpp | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 lib/entityx/cxx11/c++11-test-variadic_templates-N2555.cpp (limited to 'lib/entityx/cxx11/c++11-test-variadic_templates-N2555.cpp') diff --git a/lib/entityx/cxx11/c++11-test-variadic_templates-N2555.cpp b/lib/entityx/cxx11/c++11-test-variadic_templates-N2555.cpp deleted file mode 100644 index 4518e88..0000000 --- a/lib/entityx/cxx11/c++11-test-variadic_templates-N2555.cpp +++ /dev/null @@ -1,23 +0,0 @@ -int Accumulate() -{ - return 0; -} - -template -int Accumulate(T v, Ts... vs) -{ - return v + Accumulate(vs...); -} - -template -int CountElements() -{ - return sizeof...(Is); -} - -int main() -{ - int acc = Accumulate(1, 2, 3, 4, -5); - int count = CountElements<1,2,3,4,5>(); - return ((acc == 5) && (count == 5)) ? 0 : 1; -} -- cgit v1.2.3