From 34ba45dde404f85fb9a647e5ef0e16f691e8b37f Mon Sep 17 00:00:00 2001 From: tamasmeszaros <meszaros.q@gmail.com> Date: Mon, 9 May 2022 14:20:29 +0200 Subject: [PATCH] Small fix in Execution.hpp --- src/libslic3r/Execution/Execution.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/Execution/Execution.hpp b/src/libslic3r/Execution/Execution.hpp index dcfd86bde..57ad4b41b 100644 --- a/src/libslic3r/Execution/Execution.hpp +++ b/src/libslic3r/Execution/Execution.hpp @@ -30,8 +30,8 @@ template<class EP> using AsTraits = Traits<remove_cvref_t<EP>>; // Each execution policy should declare two types of mutexes. A a spin lock and // a blocking mutex. These types should satisfy the BasicLockable concept. -template<class EP> using SpinningMutex = typename Traits<EP>::SpinningMutex; -template<class EP> using BlockingMutex = typename Traits<EP>::BlockingMutex; +template<class EP> using SpinningMutex = typename AsTraits<EP>::SpinningMutex; +template<class EP> using BlockingMutex = typename AsTraits<EP>::BlockingMutex; // Query the available threads for concurrency. template<class EP, class = ExecutionPolicyOnly<EP> >