view: try to make VS happy again :)

This commit is contained in:
Michele Caini
2023-04-18 14:44:28 +02:00
parent 1c6b533609
commit e6f76e0f96

View File

@@ -299,7 +299,7 @@ public:
/*! @brief Updates the internal leading view if required. */
void refresh() noexcept {
std::apply([this](auto *...elem) { ((view = elem->size() < view->size() ? elem : view), ...); }, pools);
std::apply([this](auto *...elem) { ((this->view = elem->size() < this->view->size() ? elem : this->view), ...); }, pools);
}
/**