Merge in ability for memcapable to handle ascii/binary as flags to the
[m6w6/libmemcached] / libmemcached / string.h
index ef567874248a8b47c408648818f8f7398e99f888..ca2c1220943a60ae93f9c8b77aaddccd31eb2bf5 100644 (file)
@@ -28,8 +28,8 @@ struct memcached_string_st {
   size_t current_size;
   const memcached_st *root;
   struct {
-    bool is_allocated MEMCACHED_BITFIELD;
-    bool is_initialized MEMCACHED_BITFIELD;
+    bool is_allocated:1;
+    bool is_initialized:1;
   } options;
 };