Skip to content

Commit

Permalink
Actually check for x64 target with MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
horenmar committed Apr 13, 2024
1 parent 65794fd commit 029fe3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/catch2/internal/catch_random_integer_helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
// Unlike GCC, MSVC does not polyfill umul as mulh + mul pair on ARM machines.
// Currently we do not bother doing this ourselves, but we could if it became
// important for perf.
#elif defined( _MSC_VER ) && defined( _WIN64 )
#elif defined( _MSC_VER ) && defined( _M_X64 )
# define CATCH_CONFIG_INTERNAL_MSVC_UMUL128
#endif

Expand Down

0 comments on commit 029fe3b

Please sign in to comment.