]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/matdebug.cc
release: 0.0.4
[lilypond.git] / flower / matdebug.cc
index 5a313123866540ddb3cfcb1dc75bae9bcb4e5e22..1c3df9dda143ec206ae70163e8f337663d9ed966 100644 (file)
@@ -34,10 +34,9 @@ Matrix::print() const
 
 Vector::operator String() const
 {
-    int i=0;
     String s("vector [");
 #ifndef NDEBUG
-    for (; i < dim(); i++) {
+    for (int i=0; i < dim(); i++) {
        s += String(dat[i], "%6f") + ' ';
     }
 #endif