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:
Zachary Turner 2015-11-04 23:03:10 +00:00
parent 49b8548903
commit 9858899148
1 changed files with 0 additions and 4 deletions

View File

@ -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.