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 525d3ba commit 8057cfeCopy full SHA for 8057cfe
pygccxml/declarations/class_declaration.py
@@ -509,7 +509,7 @@ def find_noncopyable_vars( self ):
509
for mvar in mvars:
510
type_ = tt.remove_reference( mvar.type )
511
if tt.is_const( type_ ):
512
- no_const = remove_const( type_ )
+ no_const = tt.remove_const( type_ )
513
if tt.is_fundamental( no_const ) or tt.is_enum( no_const):
514
logger.debug( "__contains_noncopyable_mem_var - %s - TRUE - containes const member variable - fundamental or enum" % self.decl_string )
515
noncopyable_vars.append( mvar )
0 commit comments