diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-22 18:53:20 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-22 18:53:20 +0000 |
commit | 5a4f98ff943e6a501b0fe47ade007c9bbf96cb88 (patch) | |
tree | b6c6c22c073c7c51e497c9158fca08ab0e58f944 /lib/GR/HTMLDiagnostics.cpp | |
parent | a7af5ea88a6c5bdf87497cca6c20831e8c546751 (diff) |
[analyzer] Refactoring: Move stuff into namespace 'GR'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/GR/HTMLDiagnostics.cpp')
-rw-r--r-- | lib/GR/HTMLDiagnostics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/GR/HTMLDiagnostics.cpp b/lib/GR/HTMLDiagnostics.cpp index 0db63c70e2..0c059ffd1f 100644 --- a/lib/GR/HTMLDiagnostics.cpp +++ b/lib/GR/HTMLDiagnostics.cpp @@ -26,6 +26,7 @@ #include "llvm/Support/Path.h" using namespace clang; +using namespace GR; //===----------------------------------------------------------------------===// // Boilerplate. @@ -77,7 +78,7 @@ HTMLDiagnostics::HTMLDiagnostics(const std::string& prefix, } PathDiagnosticClient* -clang::createHTMLDiagnosticClient(const std::string& prefix, +GR::createHTMLDiagnosticClient(const std::string& prefix, const Preprocessor &PP) { return new HTMLDiagnostics(prefix, PP); } |