diff options
author | Chris Lattner <sabre@nondot.org> | 2011-02-17 05:19:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-02-17 05:19:40 +0000 |
commit | e281e99f760ad5944f2a9c840001f17e870dc5ed (patch) | |
tree | c48b421bf1fb85443af16e4c6abf53a0f7d077ba | |
parent | 230a7e60b1fcf6ecf6e958c1baa1108458b616ad (diff) | |
download | bcm5719-llvm-e281e99f760ad5944f2a9c840001f17e870dc5ed.tar.gz bcm5719-llvm-e281e99f760ad5944f2a9c840001f17e870dc5ed.zip |
tidy up
llvm-svn: 125723
-rw-r--r-- | clang/include/clang/Sema/AttributeList.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/Sema/AttributeList.h b/clang/include/clang/Sema/AttributeList.h index c675e75f47a..45ee579a02d 100644 --- a/clang/include/clang/Sema/AttributeList.h +++ b/clang/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; |