diff options
author | lloyd <[email protected]> | 2008-04-07 05:20:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-07 05:20:02 +0000 |
commit | 36610a40a872dd98162177c9ee463ef259aff054 (patch) | |
tree | 7a7400571f2bc8d060b828f024c10f3b7410cb62 /include | |
parent | a2e45efa784ec1a75e7a6ec06d9a4f02461216aa (diff) | |
parent | 29885981670e06413738458c11f632c5b87bb031 (diff) |
propagate from branch 'net.randombit.botan' (head db3791f6bba4b57dd8aed17893565dc5bcd68f02)
to branch 'net.randombit.botan.remove-libstate' (head 627d12447b2bb32aa08ff5daa499ac9580a77a05)
Diffstat (limited to 'include')
-rw-r--r-- | include/x509_ext.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/x509_ext.h b/include/x509_ext.h index 2e7370fbd..13a58d7d5 100644 --- a/include/x509_ext.h +++ b/include/x509_ext.h @@ -50,14 +50,12 @@ class Extensions : public ASN1_Object void add(Certificate_Extension* extn) { extensions.push_back(extn); } - Extensions& operator=(const Extensions& e) - { return copy_this(e); } + Extensions& operator=(const Extensions&); + Extensions(const Extensions&); Extensions(bool st = true) : should_throw(st) {} - Extensions(const Extensions& e) : ASN1_Object() { copy_this(e); } ~Extensions(); private: - Extensions& copy_this(const Extensions&); std::vector<Certificate_Extension*> extensions; bool should_throw; }; |