]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/program-option-scheme.cc
Issue 4989/2: Fix Type 1 (PFB) font embedding
[lilypond.git] / lily / program-option-scheme.cc
index 405e5d17c2aeb3ec7ab2873284847567a11abefd..3934217fb3c9b64ade82becc20aaff47e036ef6d 100644 (file)
@@ -21,6 +21,7 @@
 
 #include <cstdio>
 #include <cstring>
+using namespace std;
 
 #include "profile.hh"
 #include "international.hh"
@@ -30,9 +31,6 @@
 #include "warn.hh"
 #include "lily-imports.hh"
 
-using std::string;
-using std::vector;
-
 bool debug_skylines;
 bool debug_property_callbacks;
 bool debug_page_breaking_scoring;
@@ -171,7 +169,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;