diff --git a/libsrc/core/archive.hpp b/libsrc/core/archive.hpp index b97b654d..d7546060 100644 --- a/libsrc/core/archive.hpp +++ b/libsrc/core/archive.hpp @@ -729,9 +729,7 @@ namespace ngcore Archive& operator&(std::tuple &t) { // call operator& for each element of the tuple - // std::ignore to avoid MSVC warning - std::ignore = - std::apply([this](auto&... arg) { std::make_tuple(((*this) & arg).IsParallel()...);}, t); + std::apply([this](auto&... arg) { std::make_tuple(((*this) & arg).IsParallel()...);}, t); return *this; }