Fix type of PRECISION
This commit is contained in:
parent
b34a222dc5
commit
227767a425
1 changed files with 2 additions and 1 deletions
|
|
@ -2,8 +2,9 @@
|
||||||
#include <fc/crypto/bigint.hpp>
|
#include <fc/crypto/bigint.hpp>
|
||||||
#include <fc/exception/exception.hpp>
|
#include <fc/exception/exception.hpp>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#define PRECISION (1000000ll * 1000000ll * 1000000ll)
|
#define PRECISION (UINT64_C(1000000) * UINT64_C(1000000) * UINT64_C(1000000))
|
||||||
|
|
||||||
namespace fc
|
namespace fc
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue