Delete BugWizard

This commit is contained in:
QIDI TECH
2023-06-28 10:40:36 +08:00
parent 5adbe71d0c
commit aa2c60497f
17 changed files with 32 additions and 2305 deletions

View File

@@ -1,7 +1,7 @@
#ifndef EXECUTIONSEQ_HPP
#define EXECUTIONSEQ_HPP
#ifdef PRUSASLICER_USE_EXECUTION_STD // Conflicts with our version of TBB
#ifdef QIDISLICER_USE_EXECUTION_STD // Conflicts with our version of TBB
#include <execution>
#endif
@@ -19,7 +19,7 @@ static constexpr ExecutionSeq ex_seq = {};
template<class EP> struct IsSequentialEP_ { static constexpr bool value = false; };
template<> struct IsSequentialEP_<ExecutionSeq>: public std::true_type {};
#ifdef PRUSASLICER_USE_EXECUTION_STD
#ifdef QIDISLICER_USE_EXECUTION_STD
template<> struct IsExecutionPolicy_<std::execution::sequenced_policy>: public std::true_type {};
template<> struct IsSequentialEP_<std::execution::sequenced_policy>: public std::true_type {};
#endif