Skip to content

Commit 029fe3b

Browse files
committed
Actually check for x64 target with MSVC
1 parent 65794fd commit 029fe3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/catch2/internal/catch_random_integer_helpers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
// Unlike GCC, MSVC does not polyfill umul as mulh + mul pair on ARM machines.
2525
// Currently we do not bother doing this ourselves, but we could if it became
2626
// important for perf.
27-
#elif defined( _MSC_VER ) && defined( _WIN64 )
27+
#elif defined( _MSC_VER ) && defined( _M_X64 )
2828
# define CATCH_CONFIG_INTERNAL_MSVC_UMUL128
2929
#endif
3030

0 commit comments

Comments
 (0)