Browse Source

Fix ambiguous error on some compilers.

pull/1/head
Adam Ierymenko 9 years ago
parent
commit
7729cbe313
  1. 2
      controller/JSONDB.cpp

2
controller/JSONDB.cpp

@ -20,7 +20,7 @@
namespace ZeroTier {
static const nlohmann::json _EMPTY_JSON({{}});
static const nlohmann::json _EMPTY_JSON(nlohmann::json::object());
bool JSONDB::put(const std::string &n,const nlohmann::json &obj)
{

Loading…
Cancel
Save