commit | 6ad3cdd401f35217aaa7b00fe765247aaf133cf2 | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Sat Sep 28 15:08:41 2013 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Sat Sep 28 15:08:41 2013 +0000 |
tree | 9d2938d91c8e1f5c427bad38e098a8a8064eecc2 | |
parent | 42572f532b99230bf7aa3e3593a0fbb1174bce7c [diff] [blame] |
Make helper function static. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191615 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Sema/AttributeList.cpp b/lib/Sema/AttributeList.cpp index 8755a50..c980772 100644 --- a/lib/Sema/AttributeList.cpp +++ b/lib/Sema/AttributeList.cpp
@@ -155,7 +155,7 @@ #include "clang/Sema/AttrParsedAttrImpl.inc" } -const ParsedAttrInfo& getInfo(const AttributeList& A) { +static const ParsedAttrInfo &getInfo(const AttributeList &A) { return AttrInfoMap[A.getKind()]; }