From: Chris Lattner Date: Thu, 17 Feb 2011 05:19:40 +0000 (+0000) Subject: tidy up X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e594db5c2db5ca2a03203af2915fa88619417110;p=clang tidy up git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125723 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Sema/AttributeList.h b/include/clang/Sema/AttributeList.h index c675e75f47..45ee579a02 100644 --- a/include/clang/Sema/AttributeList.h +++ b/include/clang/Sema/AttributeList.h @@ -240,8 +240,8 @@ public: /// The right-hand list is appended to the left-hand list, if any /// A pointer to the joined list is returned. /// Note: the lists are not left unmodified. -inline AttributeList* addAttributeLists (AttributeList *Left, - AttributeList *Right) { +inline AttributeList *addAttributeLists(AttributeList *Left, + AttributeList *Right) { if (!Left) return Right;