Commit 7725223a authored by Michael Voznesensky's avatar Michael Voznesensky Committed by Facebook GitHub Bot

Add empty IOBuf ctor to folly cython, to match IOBuf.h

Summary: Title

Reviewed By: yfeldblum

Differential Revision: D33873064

fbshipit-source-id: 65b16ad30a7bf9f2b9e23857f072d33c94098899
parent 5da36fa6
...@@ -24,6 +24,7 @@ from cython.view cimport memoryview ...@@ -24,6 +24,7 @@ from cython.view cimport memoryview
cdef extern from "folly/io/IOBuf.h" namespace "folly": cdef extern from "folly/io/IOBuf.h" namespace "folly":
cdef cppclass cIOBuf "folly::IOBuf": cdef cppclass cIOBuf "folly::IOBuf":
cIOBuf()
uint64_t length() uint64_t length()
const_uchar* data() const_uchar* data()
bint empty() bint empty()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment