asio: Remove unused struct header

This commit is contained in:
Tatsuhiro Tsujikawa 2015-03-04 22:28:52 +09:00
parent e7d052100c
commit 44642af227
1 changed files with 0 additions and 10 deletions

View File

@ -52,16 +52,6 @@ namespace nghttp2 {
namespace asio_http2 {
struct header {
header() : sensitive(false) {}
header(std::string name, std::string value, bool sensitive = false)
: name(std::move(name)), value(std::move(value)), sensitive(sensitive) {}
std::string name;
std::string value;
bool sensitive;
};
struct header_value {
std::string value;
bool sensitive;