Fix type of PRECISION

This commit is contained in:
Eric Frias 2014-10-16 19:00:30 -04:00
parent b34a222dc5
commit 227767a425

View file

@ -2,8 +2,9 @@
#include <fc/crypto/bigint.hpp>
#include <fc/exception/exception.hpp>
#include <sstream>
#include <stdint.h>
#define PRECISION (1000000ll * 1000000ll * 1000000ll)
#define PRECISION (UINT64_C(1000000) * UINT64_C(1000000) * UINT64_C(1000000))
namespace fc
{