diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-01-18 14:40:49 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-01-18 14:42:27 +0100 |
commit | b743ab0d5fa222c8d4e7a59a7d3952d042eb2e5d (patch) | |
tree | f93f403cad4df8c08263e23c243723870c0ed4e4 /libbindgen/tests/headers/variadic-method.hpp | |
parent | f103d8a66d4c736f97d7e98c3698b5542e38d28c (diff) |
codegen: Don't implement variadic methods.
Fixes #402
Diffstat (limited to 'libbindgen/tests/headers/variadic-method.hpp')
-rw-r--r-- | libbindgen/tests/headers/variadic-method.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/variadic-method.hpp b/libbindgen/tests/headers/variadic-method.hpp new file mode 100644 index 00000000..78a8eb45 --- /dev/null +++ b/libbindgen/tests/headers/variadic-method.hpp @@ -0,0 +1,6 @@ + +void foo(const char* fmt, ...); + +struct Bar { + void foo(const char* fmt, ...); +}; |