[cfe-commits] r94784 - /cfe/trunk/lib/Analysis/PrintfFormatString.cpp

Ted Kremenek kremenek at apple.com
Thu Jan 28 17:37:52 PST 2010


Author: kremenek
Date: Thu Jan 28 19:37:52 2010
New Revision: 94784

URL: http://llvm.org/viewvc/llvm-project?rev=94784&view=rev
Log:
Move definition of FormatStringHandler::~FormatStringHandler() within namespace directives.  Hopefully this will make the Linux buildbots happy.

Modified:
    cfe/trunk/lib/Analysis/PrintfFormatString.cpp

Modified: cfe/trunk/lib/Analysis/PrintfFormatString.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/PrintfFormatString.cpp?rev=94784&r1=94783&r2=94784&view=diff

==============================================================================
--- cfe/trunk/lib/Analysis/PrintfFormatString.cpp (original)
+++ cfe/trunk/lib/Analysis/PrintfFormatString.cpp Thu Jan 28 19:37:52 2010
@@ -244,6 +244,6 @@
   assert(I == E && "Format string not exhausted");      
   return false;
 }
-}}
 
 FormatStringHandler::~FormatStringHandler() {}
+}} // end namespace clang::analyze_printf





More information about the cfe-commits mailing list