mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Amend 8e0bc01d
std::set::find only appeared in C++20. Rather use std::set::find for compatibility.
This commit is contained in:
parent
0c0f4c6b56
commit
27c01ee1d3
@ -1220,7 +1220,7 @@ void InsetBibtex::docbook(XMLStream & xs, OutputParams const &) const
|
||||
if (docbookTag == "SPECIFIC") {
|
||||
delayedTags[match[1]] = match[2];
|
||||
} else {
|
||||
if (alreadyOutputDocBookTags.contains(docbookTag)) {
|
||||
if (alreadyOutputDocBookTags.find(docbookTag) != alreadyOutputDocBookTags.end()) {
|
||||
xs << XMLStream::ESCAPE_NONE <<
|
||||
from_utf8("<!-- Several similar tags in the reference for ") + from_utf8(docbookTag) +
|
||||
from_utf8(". New tag: ") + from_utf8(match[1]) + from_utf8(". Corresponding value: ") +
|
||||
|
Loading…
Reference in New Issue
Block a user