]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/full-storage.icc
release: 0.1.47
[lilypond.git] / flower / include / full-storage.icc
index 0e45f15b247468b6365a54c46a1c4ef475722e5d..359edb6b4ceca3d4780ef7cad25d397b190be7a4 100644 (file)
@@ -18,15 +18,16 @@ Full_storage::init()
   height_i_=width_i_=max_height_i_=max_width_i_=0;
 }
 INLINE bool
-Full_storage::valid (int i, int j)const
+Full_storage::valid (int i, int j) const
 {
   return (i>=0 && i < height_i_)
-       && (j < width_i_ && j >=0);
+    && (j < width_i_ && j >=0);
 }
 
 
 INLINE
 Full_storage::Full_storage (Full_storage const&s)
+  : Matrix_storage (s)
 {
   init();
   (*this) = s;
@@ -62,7 +63,7 @@ Full_storage::cols() const
   return width_i_;
 }
 INLINE int
-Full_storage::dim()const
+Full_storage::dim() const
 {
   assert (rows()==cols ());
   return rows();