From 85797d28625a88e293351cdb412ed508d0c051a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mamy=20Andr=C3=A9-Ratsimbazafy?= Date: Wed, 25 Sep 2019 14:59:54 +0200 Subject: [PATCH] Enable stint_test (uint64 = 2xuint32) --- stint/private/datatypes.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stint/private/datatypes.nim b/stint/private/datatypes.nim index 7e44409..d3b18cf 100644 --- a/stint/private/datatypes.nim +++ b/stint/private/datatypes.nim @@ -100,7 +100,7 @@ template checkDiv2(bits: static[int]): untyped = doAssert bits >= 8, "The number of bits in a should be greater or equal to 8" bits div 2 -when defined(mpint_test): # TODO stint_test +when defined(stint_test): # TODO stint_test template uintImpl*(bits: static[int]): untyped = # Test version, StUint[64] = 2 uint32. Test the logic of the library