bug fixes
[satune.git] / src / Collections / array.h
index 03d83cd34672f4b83fa92b1f1d0857ac63ac7a46..f4ae3a59d544924e0ac6f229e8b616d2e0fdb893 100644 (file)
@@ -5,13 +5,13 @@ template<typename type>
 class Array {
 public:
        Array(uint _size) :
-               array((type *)ourcalloc(1, sizeof(type) * _size)),
+               array((type *) ourcalloc(1, sizeof(type) * _size)),
                size(_size)
        {
        }
 
        Array(type *_array, uint _size) :
-               array((type *)ourcalloc(1, sizeof(type) * _size)),
+               array((type *) ourcalloc(1, sizeof(type) * _size)),
                size(_size) {
                memcpy(array, _array, _size * sizeof(type));
        }