summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/variadic_template_function.hpp
diff options
context:
space:
mode:
authorRémy HUBSCHER <rhubscher@mozilla.com>2016-11-18 19:15:16 +0100
committerRémy HUBSCHER <rhubscher@mozilla.com>2016-11-18 19:25:22 +0100
commit3f0f86810b855d20dfc39655f336ba814d169281 (patch)
treec5be24847ff39ac4d2713d94c1dd8a69f96951af /libbindgen/tests/headers/variadic_template_function.hpp
parente65cd9bf47f52c13522b984426e26b948de9dbe7 (diff)
Add a test
Diffstat (limited to 'libbindgen/tests/headers/variadic_template_function.hpp')
-rw-r--r--libbindgen/tests/headers/variadic_template_function.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/variadic_template_function.hpp b/libbindgen/tests/headers/variadic_template_function.hpp
new file mode 100644
index 00000000..4942d8f0
--- /dev/null
+++ b/libbindgen/tests/headers/variadic_template_function.hpp
@@ -0,0 +1,6 @@
+
+template <typename T>
+class VariadicFunctionObject {
+public:
+ int add_em_up(T count,...);
+};