Fix compile warnings.

This commit is contained in:
XMRig 2020-08-24 10:04:46 +07:00
parent bc128d11d9
commit 72c8404d18
No known key found for this signature in database
GPG key ID: 446A53638BE94409
5 changed files with 13 additions and 4 deletions

View file

@ -29,13 +29,20 @@ namespace xmrig {
class HttpListener : public IHttpListener
{
public:
inline HttpListener(IHttpListener *listener, const char *tag = nullptr) : m_tag(tag), m_listener(listener) {}
inline HttpListener(IHttpListener *listener, const char *tag = nullptr) :
# ifdef APP_DEBUG
m_tag(tag),
# endif
m_listener(listener)
{}
protected:
void onHttpData(const HttpData &data) override;
private:
# ifdef APP_DEBUG
const char *m_tag;
# endif
IHttpListener *m_listener;
};