We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f05a0e commit 65689b0Copy full SHA for 65689b0
1 file changed
test/decimal.cpp
@@ -3,6 +3,7 @@
3
4
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
5
#include <stdint.h>
6
+#include <iostream>
7
#include <doctest/all>
8
#include <decimal.hpp>
9
@@ -14,7 +15,9 @@
14
15
#endif
16
17
#define TRACE std::cerr
-#define uint128_t __uint128_t
18
+#ifndef _MSC_VER
19
+ using uint128_t = BID_UINT128;
20
+#endif
21
22
struct value_t{ std::string a,b,c; };
23
using decimal_t = typename math::decimal_t<uint64_t>;
0 commit comments