Skip to content

Commit 9261968

Browse files
committedJun 2, 2024
update BasicTypes.h
1 parent 85c0d18 commit 9261968

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎IfcPlusPlus/src/ifcpp/model/BasicTypes.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OU
2424

2525
#ifdef __cpp_lib_execution
2626
#include <execution>
27-
#ifdef _DEBUG_LOOP_SEQENTIAL
27+
#if defined(_DEBUG_LOOP_SEQENTIAL) || defined(_DEBUG)
2828
#define FOR_EACH_LOOP std::for_each( std::execution::seq,
2929
#else
3030
#define FOR_EACH_LOOP std::for_each( std::execution::par,
3131
#endif
32-
#else
33-
#define FOR_EACH_LOOP std::for_each(
32+
#else
33+
#define FOR_EACH_LOOP std::for_each(
3434
#endif
3535

3636
// don't use glm::vec4, because it's x,y,z,w members depend on some defines, which can lead to lost colors

0 commit comments

Comments
 (0)
Please sign in to comment.