Closed stertingen closed 6 months ago
Build fails with GCC 14. I guess that they removed transitive includes which broke the dbcppp build. This PR adds #include <algorithm> where std::find is used, which is the 'official' header to use for std::find.
#include <algorithm>
std::find
Build fails with GCC 14. I guess that they removed transitive includes which broke the dbcppp build. This PR adds
#include <algorithm>
wherestd::find
is used, which is the 'official' header to use forstd::find
.