Remove unused nghttp2_mem_chunk

This commit is contained in:
Tatsuhiro Tsujikawa 2013-08-04 18:03:41 +09:00
parent d4ade2d7d0
commit ec733a6108
1 changed files with 0 additions and 18 deletions

View File

@ -688,24 +688,6 @@ typedef struct {
int32_t window_size_increment;
} nghttp2_window_update;
/**
* @struct
*
* The structure to hold chunk of memory.
*
* TODO Drop this if it is not used anymore.
*/
typedef struct {
/**
* The pointer to the data.
*/
uint8_t *data;
/**
* The length of the data.
*/
size_t length;
} nghttp2_mem_chunk;
/**
* @union
*