From 59250f281068d7ba947ce9a15019c8873d68b7a9 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Fri, 27 May 2016 20:04:16 +0000 Subject: [PATCH] [Timer] Add missing slash in doxygen commit. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/Timer.h b/include/llvm/Support/Timer.h index 7ec06dd6b3a..f0cb07599b8 100644 --- a/include/llvm/Support/Timer.h +++ b/include/llvm/Support/Timer.h @@ -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.