diff options
| author | Zachary Turner <zturner@google.com> | 2015-11-04 23:03:10 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-11-04 23:03:10 +0000 |
| commit | 9858899148d97e780cc1a3da8b1e39420cf56a04 (patch) | |
| tree | c4685fc2101df5f517591c11e5058f2749337589 /lldb/scripts | |
| parent | 49b8548903708ee5c684e623d42ea2bb4f3bb44d (diff) | |
| download | bcm5719-llvm-9858899148d97e780cc1a3da8b1e39420cf56a04.tar.gz bcm5719-llvm-9858899148d97e780cc1a3da8b1e39420cf56a04.zip | |
Don't access class members inside of `__del__`.
Apparently this doesn't work as the attribute doesn't exist anymore.
llvm-svn: 252091
Diffstat (limited to 'lldb/scripts')
| -rw-r--r-- | lldb/scripts/utilsDebug.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/scripts/utilsDebug.py b/lldb/scripts/utilsDebug.py index 34889e9cefd..9aae22e24af 100644 --- a/lldb/scripts/utilsDebug.py +++ b/lldb/scripts/utilsDebug.py @@ -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. |

