summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/Lint.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-03-16 17:49:03 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-03-16 17:49:03 +0000
commitf2929c9b032a0913aa8e0f81a949716e92da7070 (patch)
treeba396612405cf612c677ec24fd392bb20ff7d48a /llvm/lib/Analysis/Lint.cpp
parent43ec821cb8617ca535be28352d371b1f7833ca72 (diff)
downloadbcm5719-llvm-f2929c9b032a0913aa8e0f81a949716e92da7070.tar.gz
bcm5719-llvm-f2929c9b032a0913aa8e0f81a949716e92da7070.zip
Fix doxygen comments from r232268
llvm-svn: 232388
Diffstat (limited to 'llvm/lib/Analysis/Lint.cpp')
-rw-r--r--llvm/lib/Analysis/Lint.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/lib/Analysis/Lint.cpp b/llvm/lib/Analysis/Lint.cpp
index 9260eb2c007..65a90d7bcd8 100644
--- a/llvm/lib/Analysis/Lint.cpp
+++ b/llvm/lib/Analysis/Lint.cpp
@@ -141,16 +141,16 @@ namespace {
}
}
- // \brief A check failed, so printout out the condition and the message.
- //
- // This provides a nice place to put a breakpoint if you want to see why
- // something is not correct.
+ /// \brief A check failed, so printout out the condition and the message.
+ ///
+ /// This provides a nice place to put a breakpoint if you want to see why
+ /// something is not correct.
void CheckFailed(const Twine &Message) { MessagesStr << Message << '\n'; }
- // \brief A check failed (with values to print).
- //
- // This calls the Message-only version so that the above is easier to set a
- // breakpoint on.
+ /// \brief A check failed (with values to print).
+ ///
+ /// This calls the Message-only version so that the above is easier to set
+ /// a breakpoint on.
template <typename T1, typename... Ts>
void CheckFailed(const Twine &Message, const T1 &V1, const Ts &...Vs) {
CheckFailed(Message);
OpenPOWER on IntegriCloud