Commit 847c2ffb authored by Vladimir Cerny's avatar Vladimir Cerny

overloading on tamplate types

parent 42aea5c5
......@@ -2613,7 +2613,7 @@ class CppClassType(CType):
if other_type.is_cpp_class:
if self == other_type:
return 1
elif self.template_type and self.template_type == other_type.template_type:
elif self.template_type and other_type.template_type:
if self.templates == other_type.templates:
return 1
for t1, t2 in zip(self.templates, other_type.templates):
......
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