Fix doxygen comments from r232268

llvm-svn: 232388
This commit is contained in:
Duncan P. N. Exon Smith 2015-03-16 17:49:03 +00:00
parent 43ec821cb8
commit f2929c9b03
2 changed files with 16 additions and 16 deletions

View File

@ -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);

View File

@ -131,19 +131,19 @@ private:
template <typename... Ts> 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 <typename T1, typename... Ts>
void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs) {
CheckFailed(Message);