diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 | 
| commit | 06d4ba388873e6d1cfa9cd715a8935ecc8cd2097 (patch) | |
| tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /lib/Basic/Attributes.cpp | |
| parent | 30d791273d07fac9c0c1641a0731191bca6e8606 (diff) | |
Notes
Diffstat (limited to 'lib/Basic/Attributes.cpp')
| -rw-r--r-- | lib/Basic/Attributes.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Basic/Attributes.cpp b/lib/Basic/Attributes.cpp index a05ad053db04d..da9ac793f163b 100644 --- a/lib/Basic/Attributes.cpp +++ b/lib/Basic/Attributes.cpp @@ -3,7 +3,7 @@  #include "llvm/ADT/StringSwitch.h"  using namespace clang; -bool clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope, +int clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,                           const IdentifierInfo *Attr, const llvm::Triple &T,                           const LangOptions &LangOpts) {    StringRef Name = Attr->getName(); @@ -13,5 +13,5 @@ bool clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,  #include "clang/Basic/AttrHasAttributeImpl.inc" -  return false; +  return 0;  }  | 
