You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Compiling mockturtle with gcc 14.2.1 fails because include/mockturtle/networks/events.hpp does not have the algorithm header from stl. This file uses remove_if, which is provided by algorithm, and this library is not included at all.
To Reproduce
Just compile mockturtle using gcc 14.2.1
Environment
OS: Fedora 40
Compiler: gcc 14.2.1
Compilation mode: DEBUG
Additional context
.../mockturtle/include/mockturtle/networks/events.hpp:114:27: error: «remove_if» is not a member of «std»; did you mean «remove_cv»?
114 | on_delete.erase( std::remove_if( std::begin( on_delete ), std::end( on_delete ),
| ^~~~~~~~~
| remove_cv
Check list
None
The text was updated successfully, but these errors were encountered:
Describe the bug
Compiling mockturtle with gcc 14.2.1 fails because
include/mockturtle/networks/events.hpp
does not have thealgorithm
header from stl. This file usesremove_if
, which is provided byalgorithm
, and this library is not included at all.To Reproduce
Just compile mockturtle using gcc 14.2.1
Environment
Additional context
Check list
None
The text was updated successfully, but these errors were encountered: