From: Erich Keane Date: Wed, 5 Sep 2018 17:14:21 +0000 (+0000) Subject: Test Commit for git-svn-cleanup comment. X-Git-Tag: llvmorg-8.0.0-rc1~9410 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9f7fa9d038001b94441ca77c2719cddebdabd24;p=platform%2Fupstream%2Fllvm.git Test Commit for git-svn-cleanup comment. Removes the class name for the Expr class, which isn't necessary. llvm-svn: 341484 --- diff --git a/clang/include/clang/AST/Expr.h b/clang/include/clang/AST/Expr.h index 474b796..11f30de 100644 --- a/clang/include/clang/AST/Expr.h +++ b/clang/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;