]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/chord.cc
release: 1.3.61
[lilypond.git] / lily / chord.cc
index 330ac1b41708a28809c3a068c7205ca1893960e2..8fa7611e55d49aef2194a453789f8cc4d54ef736 100644 (file)
 #include "paper-def.hh"
 #include "lookup.hh"
 
+/*
+  FIXME: should use SCM iso. arrays and have-to-delete pointers.
+ */
+  
+
 /*
   construct from parser output
 */
@@ -210,13 +215,11 @@ Chord::Chord (Array<Musical_pitch> pitch_arr, Musical_pitch* inversion_p, Musica
     {
       inversion_pitch_ = *inversion_p;
       inversion_b_ = true;
-      delete inversion_p;
     }
   if (bass_p)
     {
       bass_pitch_ = *bass_p;
       bass_b_ = true;
-      delete bass_p;
     }
 }