Fix warnings and compile errors

This commit is contained in:
Vinnie Falco
2014-08-20 17:03:54 -07:00
parent a86f0a743c
commit 7230ef41ee
7 changed files with 14 additions and 41 deletions

View File

@@ -71,7 +71,7 @@ public:
std::array <std::uint8_t, RippleLedgerHash::size> buf;
fillrand (buf.data(), buf.size(), gen);
RippleLedgerHash h (buf.data(), buf.data() + buf.size());
auto const result (table.insert (std::make_pair (h, Entry())));
table.insert (std::make_pair (h, Entry()));
}
pass();
}