diff --git a/src/tawashi_implem/response.cpp b/src/tawashi_implem/response.cpp index f909a72..dedb7d3 100644 --- a/src/tawashi_implem/response.cpp +++ b/src/tawashi_implem/response.cpp @@ -148,8 +148,7 @@ namespace tawashi { m_settings(parSettings), m_website_root(make_root_path(*parSettings)), m_base_uri(make_base_uri(m_settings, m_cgi_env)), - m_stream_out(parStreamOut), - m_header_sent(false) + m_stream_out(parStreamOut) { assert(m_cgi_env); assert(m_stream_out); diff --git a/src/tawashi_implem/response.hpp b/src/tawashi_implem/response.hpp index 993e691..7591543 100644 --- a/src/tawashi_implem/response.hpp +++ b/src/tawashi_implem/response.hpp @@ -71,6 +71,5 @@ namespace tawashi { std::string m_base_uri; std::unique_ptr m_redis; std::ostream* m_stream_out; - bool m_header_sent; }; } //namespace tawashi