Fix doxygen comments from r232268
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Mon, 16 Mar 2015 17:49:03 +0000 (17:49 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Mon, 16 Mar 2015 17:49:03 +0000 (17:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232388 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/Lint.cpp
lib/IR/Verifier.cpp

index 9260eb2c007e2761710c2691194408244e3fa335..65a90d7bcd8748eb0ea691ab4cc4441fb85b7d21 100644 (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);
index 084bfb81a97f2ee0d92b41df646e502e00e2e25d..0b93b8a84f1de30657edea7b1ffd791718ff01d3 100644 (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);