Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/bench/bench_dynamic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
int
main(int argc, char** argv)
{
RandomInit();
ECC_Start();
SetupEnvironment();
fPrintToDebugLog = false; // don't want to write to debug.log file
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/sha512.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CSHA512
uint64_t bytes;

public:
static const size_t OUTPUT_SIZE = 64;
static constexpr size_t OUTPUT_SIZE = 64;

CSHA512();
CSHA512& Write(const unsigned char* data, size_t len);
Expand Down
2 changes: 1 addition & 1 deletion src/ntp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include "utiltime.h"
#include "warnings.h"

extern int GetRandInt(int nMax);
extern int GetRandInt(int nMax) noexcept;

/*
* NTP uses two fixed point formats. The first (l_fp) is the "long"
Expand Down
Loading