diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-03 00:58:14 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-03 00:58:14 +0000 |
commit | ebd4f52093b93fed57dcab6fa3a9033e3850ca4b (patch) | |
tree | a4d2d910583b025ff5b71e3eaf8556d7b8978fb6 /include/clang/Checker | |
parent | b6b7e7bff3101062521de6e79533a3c25e2195d9 (diff) |
Introduce TextPathDiagnostics, a simple PathDiagnosticClient that outputs as diagnostic notes
the sequence of events; useful for testing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Checker')
-rw-r--r-- | include/clang/Checker/PathDiagnosticClients.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Checker/PathDiagnosticClients.h b/include/clang/Checker/PathDiagnosticClients.h index b9d6eee66a..a0360102e7 100644 --- a/include/clang/Checker/PathDiagnosticClients.h +++ b/include/clang/Checker/PathDiagnosticClients.h @@ -28,5 +28,9 @@ PathDiagnosticClient* createPlistDiagnosticClient(const std::string& prefix, const Preprocessor &PP, PathDiagnosticClient *SubPD = 0); +PathDiagnosticClient* +createTextPathDiagnosticClient(const std::string& prefix, + const Preprocessor &PP); + } // end clang namespace #endif |