diff options
-rw-r--r-- | llvm/lib/IR/AttributeImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/AttributeImpl.h b/llvm/lib/IR/AttributeImpl.h index d5456580a67..659f9568b7c 100644 --- a/llvm/lib/IR/AttributeImpl.h +++ b/llvm/lib/IR/AttributeImpl.h @@ -186,12 +186,12 @@ public: } }; +typedef std::pair<unsigned, AttributeSetNode *> IndexAttrPair; + //===----------------------------------------------------------------------===// /// \class /// \brief This class represents a set of attributes that apply to the function, /// return type, and parameters. -typedef std::pair<unsigned, AttributeSetNode *> IndexAttrPair; - class AttributeSetImpl final : public FoldingSetNode, private TrailingObjects<AttributeSetImpl, IndexAttrPair> { |