From 602623f9aefe9c429c3a1dafe4be6ea1d3ce17a4 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 28 Sep 2013 15:08:41 +0000 Subject: [PATCH] Make helper function static. llvm-svn: 191615 --- clang/lib/Sema/AttributeList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Sema/AttributeList.cpp b/clang/lib/Sema/AttributeList.cpp index 8755a501c954..c9807723f064 100644 --- a/clang/lib/Sema/AttributeList.cpp +++ b/clang/lib/Sema/AttributeList.cpp @@ -155,7 +155,7 @@ namespace { #include "clang/Sema/AttrParsedAttrImpl.inc" } -const ParsedAttrInfo& getInfo(const AttributeList& A) { +static const ParsedAttrInfo &getInfo(const AttributeList &A) { return AttrInfoMap[A.getKind()]; }