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`.
This commit is contained in:
zkbot 2017-01-18 19:45:02 +00:00
commit 4458f87138
1 changed files with 2 additions and 0 deletions

View File

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