Browse Source

Auto merge of #2028 - bitcartel:std_numeric_gcc_620_compile_issue, r=ebfull

Add missing header

Closes #2027 where gcc 6.2.0 identified that `rpcwallet.cpp` was missing a header file `<numeric>` which is required due to usage of `std::accumulate`.
pull/4/head
zkbot 8 years ago
parent
commit
4458f87138
  1. 2
      src/wallet/rpcwallet.cpp

2
src/wallet/rpcwallet.cpp

@ -34,6 +34,8 @@
#include "json/json_spirit_value.h"
#include "asyncrpcqueue.h"
#include <numeric>
using namespace std;
using namespace json_spirit;

Loading…
Cancel
Save