1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-10-02 15:00:02 +00:00

Remove unused property.

This commit is contained in:
King_DuckZ 2017-05-19 10:01:36 +01:00
commit e84e968ff6
2 changed files with 1 additions and 3 deletions

View file

@ -148,8 +148,7 @@ namespace tawashi {
m_settings(parSettings), m_settings(parSettings),
m_website_root(make_root_path(*parSettings)), m_website_root(make_root_path(*parSettings)),
m_base_uri(make_base_uri(m_settings, m_cgi_env)), m_base_uri(make_base_uri(m_settings, m_cgi_env)),
m_stream_out(parStreamOut), m_stream_out(parStreamOut)
m_header_sent(false)
{ {
assert(m_cgi_env); assert(m_cgi_env);
assert(m_stream_out); assert(m_stream_out);

View file

@ -71,6 +71,5 @@ namespace tawashi {
std::string m_base_uri; std::string m_base_uri;
std::unique_ptr<redis::IncRedis> m_redis; std::unique_ptr<redis::IncRedis> m_redis;
std::ostream* m_stream_out; std::ostream* m_stream_out;
bool m_header_sent;
}; };
} //namespace tawashi } //namespace tawashi