[cfe-commits] r125723 - /cfe/trunk/include/clang/Sema/AttributeList.h
Chris Lattner
sabre at nondot.org
Wed Feb 16 21:19:40 PST 2011
Author: lattner
Date: Wed Feb 16 23:19:40 2011
New Revision: 125723
URL: http://llvm.org/viewvc/llvm-project?rev=125723&view=rev
Log:
tidy up
Modified:
cfe/trunk/include/clang/Sema/AttributeList.h
Modified: cfe/trunk/include/clang/Sema/AttributeList.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/AttributeList.h?rev=125723&r1=125722&r2=125723&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/AttributeList.h (original)
+++ cfe/trunk/include/clang/Sema/AttributeList.h Wed Feb 16 23:19:40 2011
@@ -240,8 +240,8 @@
/// 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;
More information about the cfe-commits
mailing list