Commit 44875019 authored by Danilo Freitas's avatar Danilo Freitas

small fix

parent e6185bed
...@@ -1398,10 +1398,8 @@ class CppClassType(CType): ...@@ -1398,10 +1398,8 @@ class CppClassType(CType):
if self.templates: if self.templates:
templates = "<" templates = "<"
for i in range(len(self.templates)-1): for i in range(len(self.templates)-1):
templates += "class "
templates += self.templates[i] templates += self.templates[i]
templates += ',' templates += ','
templates += "class "
templates += self.templates[-1] templates += self.templates[-1]
templates += ">" templates += ">"
if for_display or pyrex: if for_display or pyrex:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment