hopefully final fixes for gcc errors

This commit is contained in:
sowle 2023-04-10 21:01:35 +02:00
parent b94e2f536d
commit 52f941c748
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
4 changed files with 3 additions and 5 deletions

View file

@ -29,6 +29,7 @@
#include "portable_storage_template_helper.h"
#include "net/http_base.h"
#include "net/http_server_handlers_map2.h"
#include "net/http_client.h"
namespace epee
{

View file

@ -11,6 +11,8 @@
namespace crypto
{
namespace mp = boost::multiprecision;
extern "C"
{
#include "crypto/crypto-ops.h"

View file

@ -8,12 +8,9 @@
#include "crypto-sugar.h"
#include "range_proofs.h"
#include "clsag.h"
#include <boost/multiprecision/cpp_int.hpp>
namespace crypto
{
namespace mp = boost::multiprecision;
extern const mp::uint256_t c_zarcanum_z_coeff_mp;
extern const scalar_t c_zarcanum_z_coeff_s;

View file

@ -23,8 +23,6 @@
using namespace crypto;
namespace mp = boost::multiprecision;
// out = z ^ s (mod l)
void sc_exp(unsigned char* out, const unsigned char* z, const unsigned char* s)
{