mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
fixed: remove_cvr_t should also remove volatile
This commit is contained in:
@@ -64,7 +64,7 @@ decltype(auto) make_variant(std::size_t index)
|
||||
}
|
||||
|
||||
template<class T>
|
||||
using remove_cvr_t = std::remove_const_t<std::remove_reference_t<T>>;
|
||||
using remove_cvr_t = std::remove_cv_t<std::remove_reference_t<T>>;
|
||||
|
||||
} // namespace detail
|
||||
|
||||
|
||||
Reference in New Issue
Block a user