]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/source-file.cc
Trivial stuff
[lilypond.git] / lily / source-file.cc
index bb38ffdb0994879a5ad11ab1c9a9362445ec023d..310c7938d3b11011681f48af5f936571ae80e7c5 100644 (file)
@@ -277,16 +277,14 @@ Source_file::get_counts (char const *pos_str0,
 
   while (left > 0)
     {
-      wchar_t multibyte[2];
-
       /*
        FIXME, this is apparently locale dependent.
       */
 #if HAVE_MBRTOWC
+      wchar_t multibyte[2];
       size_t thislen = mbrtowc (multibyte, line_chars, left, &state);
 #else
       size_t thislen = 1;
-      (void) multibyte;
 #endif /* !HAVE_MBRTOWC */
 
       /* Stop converting at invalid character;