summaryrefslogtreecommitdiff
path: root/src/chunked.cc
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-07-29 01:48:01 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-07-29 01:48:01 +0200
commit8d58ffb022649fd8a28d2f74845fc8ca5c934029 (patch)
tree3ce6d5037e95192401a9490c9d13253101017764 /src/chunked.cc
parentc974e4b5df40aec646a60c747f453d11a8e7587c (diff)
Remove attribute(__unused__) usage
Just omitting the parameter name is more portable and less to write
Diffstat (limited to 'src/chunked.cc')
-rw-r--r--src/chunked.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunked.cc b/src/chunked.cc
index dfafd89..8a6ad49 100644
--- a/src/chunked.cc
+++ b/src/chunked.cc
@@ -99,7 +99,7 @@ public:
}
protected:
- virtual void data(void const* UNUSED(data), size_t UNUSED(size)) {
+ virtual void data(void const*, size_t) {
}
private: