]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/direction.hh
Revert "Issue 4550 (2/2) Avoid "using namespace std;" in included files"
[lilypond.git] / flower / include / direction.hh
index dff546749756d42526123a9d85df929e566a6149..0d36c0f7c7cca5ff25fb0a41f6917f52e1d01a83 100644 (file)
@@ -71,9 +71,9 @@ operator - (Direction d)
 template<class T> T minmax (Direction d, T a, T b)
 {
   if (d == UP)
-    return std::max (a, b);
+    return max (a, b);
   else
-    return std::min (a, b);
+    return min (a, b);
 }
 
 #endif // DIRECTION_HH