From: Ted Kremenek Date: Thu, 4 Dec 2008 22:47:11 +0000 (+0000) Subject: Remove unneeded assertion. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e50b6e7c104d00614baa3d80df62f1630a94d9c;p=clang Remove unneeded assertion. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60559 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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) {