diff options
-rw-r--r-- | lib/Lex/PTHLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/PTHLexer.cpp b/lib/Lex/PTHLexer.cpp index 85d009b4cb..9609930878 100644 --- a/lib/Lex/PTHLexer.cpp +++ b/lib/Lex/PTHLexer.cpp @@ -244,7 +244,7 @@ PTHManager::PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup, PTHManager::~PTHManager() { delete Buf; delete (PTHFileLookup*) FileLookup; - assert(PerIDCache); free(PerIDCache); + free(PerIDCache); } PTHManager* PTHManager::Create(const std::string& file, Preprocessor& PP) { |