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 | 2b9d6377f1b749ab8ada8fc2cff05954cd4731ae (patch) | |
tree | bef514c35c78b4fd15dcfffbd69cea097334f333 /lib/Lex/Preprocessor.cpp | |
parent | be07f60131bc6f8d6696f4644df1ef667a1730d5 (diff) |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91343 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 0c1b858c45..4ab0d3063c 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/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); |