From 3a376d1eb024f47c52bd3ec78dea360497d2116f Mon Sep 17 00:00:00 2001 From: Dominik Thoennes <dominik.thoennes@fau.de> Date: Wed, 5 May 2021 16:25:34 +0200 Subject: [PATCH] fix namespace of hasing function --- src/core/math/Vector3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/math/Vector3.h b/src/core/math/Vector3.h index 413cf0d69..fef637a2e 100644 --- a/src/core/math/Vector3.h +++ b/src/core/math/Vector3.h @@ -1969,7 +1969,7 @@ namespace std { std::size_t operator()( walberla::Vector3<T> const & v ) const noexcept { - return walberla::Vector3<T>::hash_value( v ); + return walberla::math::hash_value( v ); } }; } // namespace std -- GitLab