summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/AttributeList.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-02-17 05:19:40 +0000
committerChris Lattner <sabre@nondot.org>2011-02-17 05:19:40 +0000
commite594db5c2db5ca2a03203af2915fa88619417110 (patch)
tree569d2599e10256c3b76792967b838d42dc1c1660 /include/clang/Sema/AttributeList.h
parentb72c77855473379c4c47e701005f7818946f659b (diff)
tidy up
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/AttributeList.h')
-rw-r--r--include/clang/Sema/AttributeList.h4
1 files changed, 2 insertions, 2 deletions
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;