Subgraphing code in place
[satune.git] / src / Collections / array.h
index 496bdc65613e0586d2ad7de75bff3c8a7ab05422..03d83cd34672f4b83fa92b1f1d0857ac63ac7a46 100644 (file)
@@ -27,7 +27,7 @@ public:
                }
        }
 
-       type get(uint index) {
+       type get(uint index) const {
                return array[index];
        }
 
@@ -35,7 +35,7 @@ public:
                array[index] = item;
        }
 
-       uint getSize() {
+       uint getSize() const {
                return size;
        }