From 0e589964899503542455e46f063c2aa23043e838 Mon Sep 17 00:00:00 2001 From: Chris Pickel Date: Tue, 19 Apr 2011 22:22:33 -0400 Subject: Support varargs in C++ function signatures. --- tests/test_cpp_domain.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/test_cpp_domain.py') diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py index 296de1c8..84649fd1 100644 --- a/tests/test_cpp_domain.py +++ b/tests/test_cpp_domain.py @@ -37,6 +37,9 @@ def test_type_definitions(): x = 'explicit module::myclass::foo::foo()' assert unicode(parse('function', x)) == x + x = 'int printf(const char* fmt, ...)' + assert unicode(parse('function', x)) == x + x = 'std::vector> module::blah' assert unicode(parse('type_object', x)) == x -- cgit v1.2.1