Commit 44642af2 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

asio: Remove unused struct header

parent e7d05210
......@@ -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;
......
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