From: Padraig O'Sullivan Date: Fri, 10 Jul 2009 04:49:31 +0000 (-0400) Subject: Removing un-needed include declaration from C++ interface. X-Git-Tag: 0.32~17^2~8 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=77098d06bbccb1d4391dba33d7fd26937402adb6;p=m6w6%2Flibmemcached Removing un-needed include declaration from C++ interface. --- diff --git a/libmemcached/memcached.hh b/libmemcached/memcached.hh index 42334e29..deceae82 100644 --- a/libmemcached/memcached.hh +++ b/libmemcached/memcached.hh @@ -1,6 +1,5 @@ #include "libmemcached/memcached.h" #include -#include #include @@ -47,7 +46,7 @@ public: return ret_val; } - std::string get(const std::string& key, size_t *value_length) + std::string get(const std::string& key, size_t *value_length) { uint32_t flags; memcached_return rc; @@ -63,8 +62,8 @@ public: } std::string get_by_key(const std::string& master_key, - const std::string& key, - size_t *value_length) + const std::string& key, + size_t *value_length) { uint32_t flags; memcached_return rc;