summaryrefslogtreecommitdiff
path: root/modules/mono/glue/arguments_vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/arguments_vector.h')
-rw-r--r--modules/mono/glue/arguments_vector.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/mono/glue/arguments_vector.h b/modules/mono/glue/arguments_vector.h
index aeb466ba72..ab48904571 100644
--- a/modules/mono/glue/arguments_vector.h
+++ b/modules/mono/glue/arguments_vector.h
@@ -35,14 +35,13 @@
template <typename T, int POOL_SIZE = 5>
struct ArgumentsVector {
-
private:
T pool[POOL_SIZE];
T *_ptr;
int size;
- ArgumentsVector();
- ArgumentsVector(const ArgumentsVector &);
+ ArgumentsVector() = delete;
+ ArgumentsVector(const ArgumentsVector &) = delete;
public:
T *ptr() { return _ptr; }