forked from OSchip/llvm-project
Don't access class members inside of `__del__`.
Apparently this doesn't work as the attribute doesn't exist anymore. llvm-svn: 252091
This commit is contained in:
parent
49b8548903
commit
9858899148
|
@ -76,10 +76,6 @@ class CDebugFnVerbose:
|
|||
def __init__( self, vstrFnName ):
|
||||
self.__indent_out( vstrFnName );
|
||||
|
||||
# Class destructor
|
||||
def __del__( self ):
|
||||
self.__indent_back();
|
||||
|
||||
#++------------------------------------------------------------------------
|
||||
# Details: Build an indentation string of dots based on the __nLevel.
|
||||
# Type: Method.
|
||||
|
|
Loading…
Reference in New Issue