]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/program-option-scheme.cc
Revert "Issue 4550 (2/2) Avoid "using namespace std;" in included files"
[lilypond.git] / lily / program-option-scheme.cc
index 405e5d17c2aeb3ec7ab2873284847567a11abefd..b7003c085c7357694cdcb5ebc5503d395b642b04 100644 (file)
@@ -21,6 +21,7 @@
 
 #include <cstdio>
 #include <cstring>
+using namespace std;
 
 #include "profile.hh"
 #include "international.hh"
@@ -171,7 +172,7 @@ get_help_string ()
     }
 
   string help ("Options supported by `ly:set-option':\n\n");
-  vector_sort (opts, std::less<string> ());
+  vector_sort (opts, less<string> ());
   for (vsize i = 0; i < opts.size (); i++)
     help += opts[i];
   return help;