xR3b0rn / dbcppp

C/C++ DBC file parser/tool
MIT License
232 stars 76 forks source link

Fix includes for GCC 14 #149

Closed stertingen closed 6 months ago

stertingen commented 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.