Skip to content

Commit

Permalink
Provide PCG_FORCE_EMULATED_128BIT_MATH option
Browse files Browse the repository at this point in the history
This is to better allow testing of emulated 128-bit-math on systems that
have working 128-bit types.
  • Loading branch information
imneme committed Apr 4, 2021
1 parent 0caf6ff commit 66478a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/pcg_extras.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
* direct CPU support.
*
*/
#if __SIZEOF_INT128__
#if __SIZEOF_INT128__ && !PCG_FORCE_EMULATED_128BIT_MATH
namespace pcg_extras {
typedef __uint128_t pcg128_t;
}
Expand Down

0 comments on commit 66478a9

Please sign in to comment.