X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ffile-name-map.cc;h=11000e10b540c67c5b5827edef09eee46b7edece;hb=c0198cfd7fc1ad742c54afdfd5e2f943fa923dbd;hp=dc1a240e46076d1656429847fa55a4b750755de8;hpb=2c22efe5a46a37065b10c3f51c5d7db00d07d318;p=lilypond.git diff --git a/lily/file-name-map.cc b/lily/file-name-map.cc index dc1a240e46..11000e10b5 100644 --- a/lily/file-name-map.cc +++ b/lily/file-name-map.cc @@ -7,19 +7,18 @@ */ #include +using namespace std; #include "file-name-map.hh" #include "lily-guile.hh" -std::map file_name_map_global; +map file_name_map_global; String map_file_name (String s) { if (file_name_map_global.find (s) != file_name_map_global.end ()) - { - s = file_name_map_global[s]; - } + s = file_name_map_global[s]; return s; }