1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-23 00:33:44 +00:00

Remove unused property.

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

View file

@ -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);

View file

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