summaryrefslogtreecommitdiff
path: root/src/core/common/Function.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-13 23:43:57 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-13 23:43:57 +0100
commitb6cfdef98f487fc5ae38c170fa52bcf031e882e2 (patch)
treea4b6f0338655188e3c60d77a3dee3e6b3b106a11 /src/core/common/Function.hpp
parent65df6af885e81411fc0d13bce52f1bfc43a793b3 (diff)
Made functions move and copy constructible. Why? Because I can.
Diffstat (limited to 'src/core/common/Function.hpp')
-rw-r--r--src/core/common/Function.hpp5
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.