Removing un-needed include declaration from C++ interface.
authorPadraig O'Sullivan <osullivan.padraig@gmail.com>
Fri, 10 Jul 2009 04:49:31 +0000 (00:49 -0400)
committerPadraig O'Sullivan <osullivan.padraig@gmail.com>
Fri, 10 Jul 2009 04:49:31 +0000 (00:49 -0400)
libmemcached/memcached.hh

index 42334e29353211516fbffea91cdee485c3e433ec..deceae822a4705f13488308633a8fe3b02749e42 100644 (file)
@@ -1,6 +1,5 @@
 #include "libmemcached/memcached.h"
 #include <string.h>
-#include <stdio.h>
 
 #include <string>
 
@@ -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;