summaryrefslogtreecommitdiff
path: root/tests/headers/variadic_template_function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/variadic_template_function.hpp')
-rw-r--r--tests/headers/variadic_template_function.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/headers/variadic_template_function.hpp b/tests/headers/variadic_template_function.hpp
new file mode 100644
index 00000000..4942d8f0
--- /dev/null
+++ b/tests/headers/variadic_template_function.hpp
@@ -0,0 +1,6 @@
+
+template <typename T>
+class VariadicFunctionObject {
+public:
+ int add_em_up(T count,...);
+};