]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/quote-iterator.cc
Revert "Issue 4550 (2/2) Avoid "using namespace std;" in included files"
[lilypond.git] / lily / quote-iterator.cc
index f222e5a8e4cc47a12f95981700a19be4f30cf169..c4336250111170df3e40d0d58085cb645403ef37 100644 (file)
@@ -178,14 +178,14 @@ Quote_iterator::pending_moment () const
   Moment m (infty);
 
   if (Music_wrapper_iterator::ok ())
-    m = std::min (m, Music_wrapper_iterator::pending_moment ());
+    m = min (m, Music_wrapper_iterator::pending_moment ());
 
   /*
     In case event_idx_ < 0, we're not initted yet, and the wrapped
     music expression determines the starting moment.
   */
   if (quote_ok ())
-    m = std::min (m, vector_moment (event_idx_) - start_moment_);
+    m = min (m, vector_moment (event_idx_) - start_moment_);
 
   return m;
 }