Open pnorbert opened 3 days ago
Missing #include <functional> in source/adios2/toolkit/derived/Expression.cpp
#include <functional>
Ubuntu 20.04.6 LTS g++ (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0
release_210 branch
source/adios2/toolkit/derived/Expression.cpp:117:10: error: ‘function’ in namespace ‘std’ does not name a template type 117 | std::function<DerivedData(std::vector, DataType)> ComputeFct;
The necessary include is in the master branch.
We missed backporting https://github.com/ornladios/ADIOS2/pull/4209 to release_210.
Missing
#include <functional>
in source/adios2/toolkit/derived/Expression.cppUbuntu 20.04.6 LTS g++ (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0
release_210 branch
source/adios2/toolkit/derived/Expression.cpp:117:10: error: ‘function’ in namespace ‘std’ does not name a template type 117 | std::function<DerivedData(std::vector, DataType)> ComputeFct;
The necessary include is in the master branch.