diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-14 22:02:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-14 22:02:43 +0000 |
commit | d2fa78d0bd01951b32490d0533c13724452ac77b (patch) | |
tree | b9fd1e69223a57c039fa5bd00648fca362954a89 /clang/lib/Lex/Preprocessor.cpp | |
parent | ba6a0c40c4b89235876502ae295a471e3f62f683 (diff) | |
download | bcm5719-llvm-d2fa78d0bd01951b32490d0533c13724452ac77b.tar.gz bcm5719-llvm-d2fa78d0bd01951b32490d0533c13724452ac77b.zip |
fix typo
llvm-svn: 91343
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index 0c1b858c45d..4ab0d3063c4 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -102,7 +102,7 @@ Preprocessor::~Preprocessor() { Macros.begin(), E = Macros.end(); I != E; ++I) { // We don't need to free the MacroInfo objects directly. These // will be released when the BumpPtrAllocator 'BP' object gets - // destroyed. We still need to run the dstor, however, to free + // destroyed. We still need to run the dtor, however, to free // memory alocated by MacroInfo. I->second->Destroy(BP); I->first->setHasMacroDefinition(false); |