diff --git a/etcd/Value.hpp b/etcd/Value.hpp index 2c24b16..0d0bf66 100644 --- a/etcd/Value.hpp +++ b/etcd/Value.hpp @@ -4,12 +4,6 @@ #include #include -namespace web { - namespace json { - class value; - } -} - namespace etcdv3 { class KeyValue; } @@ -61,7 +55,6 @@ namespace etcd friend class DeleteRpcResponse; friend class AsyncDeleteResponse; Value(); - Value(web::json::value const & json_value); Value(etcdv3::KeyValue const & kvs); std::string _key; bool dir; diff --git a/src/Value.cpp b/src/Value.cpp index 0ac3496..666a8c3 100644 --- a/src/Value.cpp +++ b/src/Value.cpp @@ -1,7 +1,5 @@ #include -#include - #include "etcd/Value.hpp" #include "etcd/v3/KeyValue.hpp"