diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-22 23:49:16 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-22 23:49:16 +0000 |
commit | a2ea78f1320c08018e28f82f8fb543fa7b4bb52d (patch) | |
tree | c2e574913e40f3f8498d6670e6a7548b02e6e423 /include/llvm/Support/TimeValue.h | |
parent | 376a8a773e38fdcd9102a40e08ab1e0661d645d9 (diff) |
Fix an assortment of doxygen comment mistakes found by -Wdocumentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/TimeValue.h')
-rw-r--r-- | include/llvm/Support/TimeValue.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/TimeValue.h b/include/llvm/Support/TimeValue.h index 94f132a05c..5fba902359 100644 --- a/include/llvm/Support/TimeValue.h +++ b/include/llvm/Support/TimeValue.h @@ -165,7 +165,6 @@ namespace sys { /// Determines if two TimeValue objects represent the same moment in time. /// @brief True iff *this == that. - /// @brief True if this == that. int operator == (const TimeValue &that) const { return (this->seconds_ == that.seconds_) && (this->nanos_ == that.nanos_); |