Suppress warnings & allow copy elision:

* Suppress warnings from rocksdb2
* Add `override` to rippled rocksdb functions
* Remove moves preventing copy elision
This commit is contained in:
seelabs
2015-09-26 13:15:16 -04:00
committed by Vinnie Falco
parent 9315d98aa9
commit 442ad4e445
7 changed files with 62 additions and 28 deletions

View File

@@ -862,7 +862,7 @@ STParsedJSONObject::STParsedJSONObject (
Json::Value const& json)
{
using namespace STParsedJSONDetail;
object = std::move (parseObject (name, json, sfGeneric, 0, error));
object = parseObject (name, json, sfGeneric, 0, error);
}
//------------------------------------------------------------------------------