OSDN Git Service

[Timer] Add missing slash in doxygen commit.
authorDavide Italiano <davide@freebsd.org>
Fri, 27 May 2016 20:04:16 +0000 (20:04 +0000)
committerDavide Italiano <davide@freebsd.org>
Fri, 27 May 2016 20:04:16 +0000 (20:04 +0000)
Pointed out by: Sean Silva.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271039 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Timer.h

index 7ec06dd..f0cb075 100644 (file)
@@ -104,7 +104,7 @@ public:
   const std::string &getName() const { return Name; }
   bool isInitialized() const { return TG != nullptr; }
 
-  // Check if the timer is currently running.
+  /// Check if the timer is currently running.
   bool isRunning() const { return Running; }
 
   /// Check if startTimer() has ever been called on this timer.