Revert breaking changes to jsoncpp_adapter.hpp

This commit is contained in:
Tristan Penman 2020-07-06 19:55:07 +10:00
parent f3a0390e17
commit d453ee2ed4

View File

@ -476,7 +476,7 @@ public:
: BasicAdapter() { }
/// Construct a JsonCppAdapter containing a specific JsonCpp value
explicit JsonCppAdapter(const Json::Value &value)
JsonCppAdapter(const Json::Value &value)
: BasicAdapter(value) { }
};