]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/skyline-pair.cc
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / skyline-pair.cc
index 67fef4c51ac43bf1d240073375b43fb097372002..5dc217d3426217e5174b10699646fedbe2f8cee4 100644 (file)
@@ -87,13 +87,13 @@ Skyline_pair::print () const
 Real
 Skyline_pair::left () const
 {
-  return min (skylines_[UP].left (), skylines_[DOWN].left ());
+  return std::min (skylines_[UP].left (), skylines_[DOWN].left ());
 }
 
 Real
 Skyline_pair::right () const
 {
-  return max (skylines_[UP].right (), skylines_[DOWN].right ());
+  return std::max (skylines_[UP].right (), skylines_[DOWN].right ());
 }
 
 void