diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-01-28 20:45:37 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-01-28 20:45:37 +0000 |
commit | 509355e982d15da4f8f3939493516379665f6275 (patch) | |
tree | 0017bee8b0fa503104a3d934fcdf882366c3069c | |
parent | b43a50ff1b0b171ece84425b0ad83a9a31f038fa (diff) |
Tweak doxygen comment. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63228 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/Diagnostic.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/clang/Basic/Diagnostic.h b/include/clang/Basic/Diagnostic.h index d1c045704a..c57e1a9a89 100644 --- a/include/clang/Basic/Diagnostic.h +++ b/include/clang/Basic/Diagnostic.h @@ -205,9 +205,11 @@ public: Level getDiagnosticLevel(unsigned DiagID) const; - /// Report - Issue the message to the client. DiagID is a member of the - /// diag::kind enum. This actually returns aninstance of DiagnosticBuilder - /// which emits the diagnostics (through ProcessDiag) when it is destroyed. + /// Report - Issue the message to the client. @c DiagID is a member of the + /// @c diag::kind enum. This actually returns aninstance of DiagnosticBuilder + /// which emits the diagnostics (through @c ProcessDiag) when it is destroyed. + /// @c Pos represents the source location associated with the diagnostic, + /// which can be an invalid location if no position information is available. inline DiagnosticBuilder Report(FullSourceLoc Pos, unsigned DiagID); private: |