ThreadSafetyAnalysis: Fix annotations in class members. [-Wdocumentation]
llvm-svn: 214795
diff --git a/clang/lib/Analysis/ThreadSafety.cpp b/clang/lib/Analysis/ThreadSafety.cpp
index d233b1b..5ec9d29 100644
--- a/clang/lib/Analysis/ThreadSafety.cpp
+++ b/clang/lib/Analysis/ThreadSafety.cpp
@@ -97,11 +97,11 @@
/// 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,