diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-13 23:43:57 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-13 23:43:57 +0100 |
commit | b6cfdef98f487fc5ae38c170fa52bcf031e882e2 (patch) | |
tree | a4b6f0338655188e3c60d77a3dee3e6b3b106a11 /src | |
parent | 65df6af885e81411fc0d13bce52f1bfc43a793b3 (diff) |
Made functions move and copy constructible. Why? Because I can.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/common/Function.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/common/Function.hpp b/src/core/common/Function.hpp index 0e8af12..adfc9bb 100644 --- a/src/core/common/Function.hpp +++ b/src/core/common/Function.hpp @@ -62,11 +62,6 @@ protected: virtual Variant doCall(Variant::arrayType &args, void *thisRef) const = 0; public: - // No copy constructor - Function(const Function &) = delete; - - // No move constructor - Function(Function &&) = delete; /** * Virtual destructor of the Function class. |