]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/array.hh
release: 1.3.3
[lilypond.git] / flower / include / array.hh
index f8f6e352fdc7a0a92c7b609bfb7b2c1ea2f70c62..d6349588aa03324d0c81e3a14573f9abf012e570 100644 (file)
@@ -13,7 +13,7 @@
 #endif
 
 /// copy a bare (C-)array from #src# to #dest# sized  #count#
-template<class T> void arrcpy (T*dest, T const*src, int count);
+template<class T> void arrcpy (T*dest, T*src, int count);
 
 /**
   Scaleable array/stack template, for a type T with default constructor.
@@ -241,7 +241,7 @@ public:
       set_size (size_ + src.size_);
       arrcpy (array_p_+s,src.array_p_, src.size_);     
     }
-  Array<T> slice (int lower, int upper) const; 
+  Array<T> slice (int lower, int upper) ;
   void reverse();
 };