From a7189679771630607e9b9f2c78c22bb398d48291 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Mon, 16 Mar 2015 17:49:03 +0000 Subject: [PATCH] Fix doxygen comments from r232268 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232388 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/Lint.cpp | 16 ++++++++-------- lib/IR/Verifier.cpp | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/Analysis/Lint.cpp b/lib/Analysis/Lint.cpp index 9260eb2c007..65a90d7bcd8 100644 --- a/lib/Analysis/Lint.cpp +++ b/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 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &...Vs) { CheckFailed(Message); diff --git a/lib/IR/Verifier.cpp b/lib/IR/Verifier.cpp index 084bfb81a97..0b93b8a84f1 100644 --- a/lib/IR/Verifier.cpp +++ b/lib/IR/Verifier.cpp @@ -131,19 +131,19 @@ private: template void WriteTs() {} public: - // \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) { OS << Message << '\n'; Broken = true; } - // \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 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs) { CheckFailed(Message); -- 2.34.1