diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-01-29 01:37:52 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-01-29 01:37:52 +0000 |
commit | d7a3f01a5109807b4fad48a7ab75fa806b8b899d (patch) | |
tree | 7c01b547809f6f859882f1052589644119f31fd5 /lib/Analysis/PrintfFormatString.cpp | |
parent | e82d804ee761006250543d6fe6e98ee7896cd756 (diff) |
Move definition of FormatStringHandler::~FormatStringHandler() within namespace directives. Hopefully this will make the Linux buildbots happy.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94784 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PrintfFormatString.cpp')
-rw-r--r-- | lib/Analysis/PrintfFormatString.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/PrintfFormatString.cpp b/lib/Analysis/PrintfFormatString.cpp index 1a95e0b882..fdeaddec35 100644 --- a/lib/Analysis/PrintfFormatString.cpp +++ b/lib/Analysis/PrintfFormatString.cpp @@ -244,6 +244,6 @@ bool ParseFormatString(FormatStringHandler &H, assert(I == E && "Format string not exhausted"); return false; } -}} FormatStringHandler::~FormatStringHandler() {} +}} // end namespace clang::analyze_printf |