summaryrefslogtreecommitdiff
path: root/Lib/csharp/std_set.i
diff options
context:
space:
mode:
authorMario Emmenlauer <memmenlauer@biodataanalysis.de>2022-11-10 16:16:41 +0100
committerMario Emmenlauer <memmenlauer@biodataanalysis.de>2023-01-10 17:16:26 +0100
commite15cf1ac2da8a0c57af862a2a41d2ea772acf925 (patch)
treeced3c940f6973dbb83f3081b152705f1e2dd0fbf /Lib/csharp/std_set.i
parentb18b75369cd4b2795abad1283629b13a62630b58 (diff)
downloadswig-e15cf1ac2da8a0c57af862a2a41d2ea772acf925.tar.gz
Lib/csharp: Resolve a few warnings about unused parameters
Diffstat (limited to 'Lib/csharp/std_set.i')
-rw-r--r--Lib/csharp/std_set.i2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/csharp/std_set.i b/Lib/csharp/std_set.i
index 012152260..ce329e26c 100644
--- a/Lib/csharp/std_set.i
+++ b/Lib/csharp/std_set.i
@@ -297,12 +297,14 @@ class set {
}
const key_type& get_next(std::set<T>::iterator *swigiterator) {
+ (void)self;
std::set<T>::iterator iter = *swigiterator;
(*swigiterator)++;
return *iter;
}
void destroy_iterator(std::set<T>::iterator *swigiterator) {
+ (void)self;
delete swigiterator;
}
}