Skip to content

Commit 995293e

Browse files
committed
Add decimal_fast32_t to example
1 parent e888d75 commit 995293e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

examples/debugger.cpp

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
//
55
// This example, when run with the pretty printers, shows how various values are represented
66

7-
#include <boost/decimal/decimal32_t.hpp> // For type decimal32_t
8-
#include <boost/decimal/decimal64_t.hpp> // For type decimal64_t
9-
#include <boost/decimal/decimal128_t.hpp> // For type decimal128_t
10-
#include <boost/decimal/cmath.hpp> // For nan function to write payload to nans
7+
#include <boost/decimal/decimal32_t.hpp> // For type decimal32_t
8+
#include <boost/decimal/decimal64_t.hpp> // For type decimal64_t
9+
#include <boost/decimal/decimal128_t.hpp> // For type decimal128_t
10+
#include <boost/decimal/decimal_fast32_t.hpp> // For type decimal_fast32_t
11+
#include <boost/decimal/cmath.hpp> // For nan function to write payload to nans
1112
#include <limits>
1213

1314
template <typename T>
@@ -41,5 +42,7 @@ int main()
4142
debug_values<boost::decimal::decimal64_t>();
4243
debug_values<boost::decimal::decimal128_t>();
4344

45+
debug_values<boost::decimal::decimal_fast32_t>();
46+
4447
return 0;
4548
}

0 commit comments

Comments
 (0)