We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b7930 commit f6d5984Copy full SHA for f6d5984
pygccxml/declarations/type_traits.py
@@ -1174,8 +1174,8 @@ def is_smart_pointer(type_):
1174
(class_declaration.class_declaration_t,
1175
class_declaration.class_t)):
1176
return False
1177
- if not (impl_details.is_defined_in_xxx('boost', type_) or \
1178
- impl_details.is_defined_in_xxx('std', type_)):
+ if not (impl_details.is_defined_in_xxx('boost', type_) or
+ impl_details.is_defined_in_xxx('std', type_)):
1179
1180
return type_.decl_string.startswith('::boost::shared_ptr<') or \
1181
type_.decl_string.startswith('::std::shared_ptr<')
0 commit comments