aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/singlejar/combiners.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/singlejar/combiners.cc')
-rw-r--r--src/tools/singlejar/combiners.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tools/singlejar/combiners.cc b/src/tools/singlejar/combiners.cc
index 8fd2a0fdfe..1da86e626a 100644
--- a/src/tools/singlejar/combiners.cc
+++ b/src/tools/singlejar/combiners.cc
@@ -113,9 +113,11 @@ void *Concatenator::OutputEntry(bool compress) {
NullCombiner::~NullCombiner() {}
-bool NullCombiner::Merge(const CDH *cdh, const LH *lh) { return true; }
+bool NullCombiner::Merge(const CDH * /*cdh*/, const LH * /*lh*/) {
+ return true;
+}
-void *NullCombiner::OutputEntry(bool compress) { return nullptr; }
+void *NullCombiner::OutputEntry(bool /*compress*/) { return nullptr; }
XmlCombiner::~XmlCombiner() {}
@@ -171,6 +173,6 @@ void *XmlCombiner::OutputEntry(bool compress) {
PropertyCombiner::~PropertyCombiner() {}
-bool PropertyCombiner::Merge(const CDH *cdh, const LH *lh) {
+bool PropertyCombiner::Merge(const CDH * /*cdh*/, const LH * /*lh*/) {
return false; // This should not be called.
}