summaryrefslogtreecommitdiff
path: root/Source/Kernel/Library/Vector.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/Library/Vector.class.h')
-rw-r--r--Source/Kernel/Library/Vector.class.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Kernel/Library/Vector.class.h b/Source/Kernel/Library/Vector.class.h
index 9763d2c..f16303b 100644
--- a/Source/Kernel/Library/Vector.class.h
+++ b/Source/Kernel/Library/Vector.class.h
@@ -14,6 +14,7 @@ class Vector {
Vector(u32int size);
Vector(u32int size, T value);
Vector(const Vector<T> &other);
+ Vector<T>& operator= (const Vector<T> &other);
~Vector();
T& operator[] (u32int index);