diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-04 22:48:36 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-04 22:48:36 +0000 |
commit | e9882cf315057d116f7edcb0023dc342a684234a (patch) | |
tree | 6fed6369fc563d28e4519b3afb1b7e31264efb48 /clang/lib/Analysis | |
parent | 8c8dbc3622fc915aae24746d4c6e9c5c83d75bc9 (diff) | |
download | bcm5719-llvm-e9882cf315057d116f7edcb0023dc342a684234a.tar.gz bcm5719-llvm-e9882cf315057d116f7edcb0023dc342a684234a.zip |
ThreadSafetyAnalysis: Fix annotations in class members. [-Wdocumentation]
llvm-svn: 214795
Diffstat (limited to 'clang/lib/Analysis')
-rw-r--r-- | clang/lib/Analysis/ThreadSafety.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Analysis/ThreadSafety.cpp b/clang/lib/Analysis/ThreadSafety.cpp index d233b1b1ba4..5ec9d297f0b 100644 --- a/clang/lib/Analysis/ThreadSafety.cpp +++ b/clang/lib/Analysis/ThreadSafety.cpp @@ -97,11 +97,11 @@ public: /// shared. class FactEntry : public CapabilityExpr { private: - LockKind LKind; //< exclusive or shared - SourceLocation AcquireLoc; //< where it was acquired. - bool Managed; //< for ScopedLockable objects - bool Asserted; //< true if the lock was asserted - const til::SExpr* UnderlyingMutex; //< for ScopedLockable objects + LockKind LKind; ///< exclusive or shared + SourceLocation AcquireLoc; ///< where it was acquired. + bool Managed; ///< for ScopedLockable objects + bool Asserted; ///< true if the lock was asserted + const til::SExpr* UnderlyingMutex; ///< for ScopedLockable objects public: FactEntry(const CapabilityExpr &CE, LockKind LK, SourceLocation Loc, |