Author: chapuni
Date: Mon Jul  8 07:00:36 2013
New Revision: 185810

URL: http://llvm.org/viewvc/llvm-project?rev=185810&view=rev
Log:
clang/include/clang/AST/ExprCXX.h:260:5: Fix a warning -- unknown command tag 
name 'cc'; did you mean 'c'? [-Wdocumentation]

Modified:
    cfe/trunk/include/clang/AST/ExprCXX.h

Modified: cfe/trunk/include/clang/AST/ExprCXX.h
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExprCXX.h?rev=185810&r1=185809&r2=185810&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ExprCXX.h (original)
+++ cfe/trunk/include/clang/AST/ExprCXX.h Mon Jul  8 07:00:36 2013
@@ -257,7 +257,7 @@ public:
 /// \brief A C++ @c dynamic_cast expression (C++ [expr.dynamic.cast]).
 ///
 /// This expression node represents a dynamic cast, e.g.,
-/// \cc dynamic_cast<Derived*>(BasePtr). Such a cast may perform a run-time
+/// \c dynamic_cast<Derived*>(BasePtr). Such a cast may perform a run-time
 /// check to determine how to perform the type conversion.
 class CXXDynamicCastExpr : public CXXNamedCastExpr {
   CXXDynamicCastExpr(QualType ty, ExprValueKind VK, CastKind kind,


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to