aboutsummaryrefslogtreecommitdiffstats
path: root/include/coolarray.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/coolarray.hpp')
-rw-r--r--include/coolarray.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/coolarray.hpp b/include/coolarray.hpp
index 3e167b7..5388aab 100644
--- a/include/coolarray.hpp
+++ b/include/coolarray.hpp
@@ -16,7 +16,7 @@ public:
_capacity = 0;
}
- CoolArray(size_t n, const T& value) {
+ CoolArray(size_t n, const T& value=0) {
buffer = new T[n];
_size = n;
_capacity = n;