Robert Murrell / Sketchlet
Revision:
3:bdd07af32afe
Parent:
0:42e6dbd4dbeb
--- a/ArrayList.hpp	Fri Jan 20 15:07:53 2017 +0000
+++ b/ArrayList.hpp	Fri Jan 20 15:10:27 2017 +0000
@@ -27,12 +27,6 @@
 namespace mbed {
 namespace sketchlet {
 
-template <class T> ArrayList<T>::ArrayList() {
-    this->usize     = ARRAYLIST_DEFAULT_SIZE;
-    this->elements  = new T[this->usize];
-    this->index     = 0;
-}
-
 template <class T> ArrayList<T>::ArrayList(uint8_t usize) {
     this->usize     = usize;
     this->elements  = new T[this->usize];