diff options
author | Sadie Powell <sadie@witchery.services> | 2020-04-10 00:30:58 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-04-10 00:30:58 +0100 |
commit | ab49ff82c562a0a97bcca759f6a6c80fef31516f (patch) | |
tree | 5dbc19f1b2fcf7914dacc1c94f741fc3889ecb57 /src | |
parent | bb39d78be61e45555cdd87985e26ea07b725fabf (diff) |
Remove an unused variable in the http_acl module.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_httpd_acl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_acl.cpp b/src/modules/m_httpd_acl.cpp index cb82b15fa..6b163c59c 100644 --- a/src/modules/m_httpd_acl.cpp +++ b/src/modules/m_httpd_acl.cpp @@ -43,7 +43,7 @@ class HTTPACL class ModuleHTTPAccessList : public Module, public HTTPACLEventListener { - std::string stylesheet; + private: std::vector<HTTPACL> acl_list; HTTPdAPI API; |