summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-16 05:22:28 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-16 05:22:28 +0000
commit76b67df11e5cdb87e954a0ad7d1cd7fd4a502be1 (patch)
treef521670520bd3932d90f525e7789e6315238d8a6 /include/llvm
parent847a9c33981d88055bf83c14c341ed3a4db10c85 (diff)
downloadllvm-76b67df11e5cdb87e954a0ad7d1cd7fd4a502be1.tar.gz
llvm-76b67df11e5cdb87e954a0ad7d1cd7fd4a502be1.tar.bz2
llvm-76b67df11e5cdb87e954a0ad7d1cd7fd4a502be1.tar.xz
Put simple c'tors inline.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Attributes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h
index 72bcca02ff..aac5d9ef4a 100644
--- a/include/llvm/Attributes.h
+++ b/include/llvm/Attributes.h
@@ -88,10 +88,10 @@ public:
};
private:
AttributesImpl *Attrs;
- Attributes(AttributesImpl *A);
+ Attributes(AttributesImpl *A) : Attrs(A) {}
public:
Attributes() : Attrs(0) {}
- Attributes(const Attributes &A);
+ Attributes(const Attributes &A) : Attrs(A.Attrs) {}
Attributes &operator=(const Attributes &A) {
Attrs = A.Attrs;
return *this;