X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fprogram-option-scheme.cc;h=3934217fb3c9b64ade82becc20aaff47e036ef6d;hb=3cdc909d8cea64c8faef90d3a6a391f32a424ba2;hp=405e5d17c2aeb3ec7ab2873284847567a11abefd;hpb=59a6d1a06432fc0ca88c3023c646182f389ec1b5;p=lilypond.git diff --git a/lily/program-option-scheme.cc b/lily/program-option-scheme.cc index 405e5d17c2..3934217fb3 100644 --- a/lily/program-option-scheme.cc +++ b/lily/program-option-scheme.cc @@ -21,6 +21,7 @@ #include #include +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 ()); + vector_sort (opts, less ()); for (vsize i = 0; i < opts.size (); i++) help += opts[i]; return help;