Fix warning

This commit is contained in:
Richard Kimberly Heck 2023-07-27 16:56:48 -04:00
parent 9c7030b36b
commit d815f382fa

View File

@ -379,7 +379,7 @@ docstring convertLaTeXCommands(docstring const & str)
}
if (ch == '~') {
ret += 0x00a0;
ret += char_type(0x00a0);
val = val.substr(1);
continue;
}