aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2011-01-26 18:07:07 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2011-01-26 18:07:07 +0000
commitfa75e614683e94ff2e0bd651b1722935a2507758 (patch)
tree68b7f5cadba1ed5b9e5b679cb18f6b568cd3123f
parent57c9f4f278fe15dc4964f2999486ffdbabce635c (diff)
Remove Attr::isMerged; it is not used any more and redundant with
InheritableAttr git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124298 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Attr.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/clang/AST/Attr.h b/include/clang/AST/Attr.h
index d8f0979a8a..a6d23e5ff0 100644
--- a/include/clang/AST/Attr.h
+++ b/include/clang/AST/Attr.h
@@ -89,10 +89,6 @@ protected:
public:
- /// \brief Whether this attribute should be merged to new
- /// declarations.
- virtual bool isMerged() const { return true; }
-
attr::Kind getKind() const {
return static_cast<attr::Kind>(AttrKind);
}