diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2017-07-22 01:15:31 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2017-07-22 01:16:04 +0200 |
| commit | bb61eeb6aecab1492b62426433af7c3c963a060b (patch) | |
| tree | b9a27865b940f78e44d0af351f329c704f5e9117 /src | |
| parent | ac7c7302ef096f664f5b3ab9f1fe407b93f2d115 (diff) | |
Restore -Wunused-parameter warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/proxy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proxy.cc b/src/proxy.cc index fdb6df0..639bb64 100644 --- a/src/proxy.cc +++ b/src/proxy.cc @@ -1536,7 +1536,7 @@ void ProxyImpl::monitor_error(size_t index, uint16_t status_code, } bool ProxyImpl::support_monitor_version( - size_t index, std::string const& version) { + size_t UNUSED(index), std::string const& version) { if (version.empty()) return false; // TODO: Actually do some version check here return version.compare(VERSION) == 0; |
