From: Erich Keane Date: Wed, 5 Sep 2018 17:14:21 +0000 (+0000) Subject: Test Commit for git-svn-cleanup comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f742fbf83201b02b17919a50a645bea3bda96f83;p=clang Test Commit for git-svn-cleanup comment. Removes the class name for the Expr class, which isn't necessary. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@341484 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 474b796ea6..11f30de77a 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -99,10 +99,9 @@ struct SubobjectAdjustment { } }; -/// Expr - This represents one expression. Note that Expr's are subclasses of -/// Stmt. This allows an expression to be transparently used any place a Stmt -/// is required. -/// +/// This represents one expression. Note that Expr's are subclasses of Stmt. +/// This allows an expression to be transparently used any place a Stmt is +/// required. class Expr : public Stmt { QualType TR;