Merged in vitaut/sphinx/cpp-variadic (pull request #241)

Add support for variadic templates in C++ domain
This commit is contained in:
Takayuki Shimizukawa
2014-05-28 00:08:48 +09:00
2 changed files with 13 additions and 3 deletions
+2
View File
@@ -126,6 +126,8 @@ def test_type_definitions():
x = 'int foo(D d=x(a'
raises(DefinitionError, parse, 'function', x)
x = 'int foo(const A&... a)'
assert unicode(parse('function', x)) == x
def test_bases():
x = 'A'