diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-03-21 09:08:32 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-03-21 09:08:32 -0700 |
commit | 6bb19e7947bfa955afb288126158fe0155ebd7f4 (patch) | |
tree | 1f5d0c695b3c3f3a71aec3b5177174e9f2bedeba | |
parent | 3d2518f799961fdf510916092220b1a3347e4e8f (diff) | |
download | infinitytier-6bb19e7947bfa955afb288126158fe0155ebd7f4.tar.gz infinitytier-6bb19e7947bfa955afb288126158fe0155ebd7f4.zip |
build fix
-rw-r--r-- | controller/JSONDB.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/JSONDB.cpp b/controller/JSONDB.cpp index 9c28ddf1..8b6de9b4 100644 --- a/controller/JSONDB.cpp +++ b/controller/JSONDB.cpp @@ -57,7 +57,7 @@ bool JSONDB::put(const std::string &n,const nlohmann::json &obj) return true; } -const nlohmann::json &JSONDB::get(const std::string &n,unsigned long maxSinceCheck) +const nlohmann::json &JSONDB::get(const std::string &n) { if (!_isValidObjectName(n)) return _EMPTY_JSON; |