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
Building the project with the latest changes, gives errors like:
[ 92%] Building CXX object CMakeFiles/archetype.dir/inspect_universe.cc.o
[...]/archetype/drivers/archetype/inspect_universe.cc: In function ‘void archetype::inspect_universe(archetype::Storage&, std::ostream&)’:
[...]/archetype/drivers/archetype/inspect_universe.cc:126:64: error: ‘ostream_iterator’ is not a member of ‘std’
126 | std::copy(vi.second.begin(), vi.second.end(), std::ostream_iterator<std::string>(out, " "));
which are fixable on Ubuntu adding
#include <iterator> to inspect_universe.hh
The text was updated successfully, but these errors were encountered:
Building the project with the latest changes, gives errors like:
which are fixable on Ubuntu adding
#include <iterator>
toinspect_universe.hh
The text was updated successfully, but these errors were encountered: