Skip to content

Commit

Permalink
Manually define 128 bit integer types
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Jan 28, 2024
1 parent 5de0946 commit e04bb7e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ref_app/src/app/benchmark/app_benchmark_non_std_decimal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@
#if !defined(BOOST_DECIMAL_DISABLE_CLIB)
#define BOOST_DECIMAL_DISABLE_CLIB
#endif
#else
namespace boost
{
using int128_type = __int128;
using uint128_type = unsigned __int128;
} // namespace boost
#endif

#include <boost/config.hpp>
#include <boost/decimal.hpp>

#include <app/benchmark/app_benchmark_detail.h>
Expand Down

0 comments on commit e04bb7e

Please sign in to comment.