]> git.saurik.com Git - cycript.git/blobdiff - Pooling.hpp
Remove extra type cast long obsoleted by template.
[cycript.git] / Pooling.hpp
index c7d7ae306dbc5657fb341da6c239e4e2b5d355ea..550a03a9ffae7d54cec429ab4e0dc1ff40645477 100644 (file)
@@ -118,7 +118,7 @@ class CYPool {
     char *strdup(const char *data) {
         if (data == NULL)
             return NULL;
     char *strdup(const char *data) {
         if (data == NULL)
             return NULL;
-        return reinterpret_cast<char *>(memdup(data, strlen(data) + 1, 1));
+        return memdup(data, strlen(data) + 1, 1);
     }
 
     template <typename Type_>
     }
 
     template <typename Type_>