mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Amend 0dc7f34e
: avoid using a C++20 function.
This commit is contained in:
parent
fec498d661
commit
dec5330426
@ -727,7 +727,7 @@ void Encodings::read(FileName const & encfile, FileName const & symbolsfile)
|
||||
symbol = tmp;
|
||||
|
||||
// Special case: more than one entry for one character (to add other LaTeX commands).
|
||||
if (unicodesymbols.contains(symbol)) {
|
||||
if (unicodesymbols.find(symbol) != unicodesymbols.end()) {
|
||||
if (!symbolsLex.next(true))
|
||||
break;
|
||||
docstring textCommand = symbolsLex.getDocString();
|
||||
|
Loading…
Reference in New Issue
Block a user