]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scope.cc
release: 1.3.39
[lilypond.git] / lily / scope.cc
index e2923fcb80bfa68ca954be7c6a01235d483ffb5f..917f97344abc93c9e2e6695c80ef1cbaf88fb270 100644 (file)
 #include "dictionary.hh"
 #include "protected-scm.hh"
 
-void
-Scope::print () const
-{
-#ifndef NPRINT
-  bool init_b = false;         // ugh
-  for (Scope_iter ai (*this);  ai.ok(); ai++)
-    {
-      if (ai.val()->init_b_ == init_b)
-       {
-         DEBUG_OUT << ai.key() << "=";
-         ai.val()->print ();
-       }
-    }
-#endif
-}
 
 Scope::~Scope ()
 {
   for (Scope_iter ai (*this); ai.ok(); ai++)
-    {
-      DEBUG_OUT << "deleting: " << ai.key() << '\n';
-      delete ai.val ();
-    }
+    delete ai.val ();
   delete id_dict_;
 }