summaryrefslogtreecommitdiff
path: root/src/binding-hash.cc
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-06-09 16:09:35 -0700
committerGitHub <noreply@github.com>2017-06-09 16:09:35 -0700
commit5322dbcd2a06c920f59b5a3bc6f01de5fd2af228 (patch)
treef87800aec8261015831c2244ad2c8ac58862084e /src/binding-hash.cc
parent155bbc40469570681fec73eca262dbcc05643774 (diff)
downloadwabt-5322dbcd2a06c920f59b5a3bc6f01de5fd2af228.tar.gz
wabt-5322dbcd2a06c920f59b5a3bc6f01de5fd2af228.tar.bz2
wabt-5322dbcd2a06c920f59b5a3bc6f01de5fd2af228.zip
Use C++ callbacks in BindingHash::FindDuplicates (#487)
Diffstat (limited to 'src/binding-hash.cc')
-rw-r--r--src/binding-hash.cc20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/binding-hash.cc b/src/binding-hash.cc
index 1e87ad5b..ec180603 100644
--- a/src/binding-hash.cc
+++ b/src/binding-hash.cc
@@ -21,17 +21,16 @@
namespace wabt {
-void BindingHash::find_duplicates(DuplicateCallback callback,
- void* user_data) const {
+void BindingHash::FindDuplicates(DuplicateCallback callback) const {
if (size() > 0) {
ValueTypeVector duplicates;
- create_duplicates_vector(&duplicates);
- sort_duplicates_vector_by_location(&duplicates);
- call_callbacks(duplicates, callback, user_data);
+ CreateDuplicatesVector(&duplicates);
+ SortDuplicatesVectorByLocation(&duplicates);
+ CallCallbacks(duplicates, callback);
}
}
-void BindingHash::create_duplicates_vector(
+void BindingHash::CreateDuplicatesVector(
ValueTypeVector* out_duplicates) const {
// This relies on the fact that in an unordered_multimap, all values with the
// same key are adjacent in iteration order.
@@ -50,7 +49,7 @@ void BindingHash::create_duplicates_vector(
}
}
-void BindingHash::sort_duplicates_vector_by_location(
+void BindingHash::SortDuplicatesVectorByLocation(
ValueTypeVector* duplicates) const {
std::sort(
duplicates->begin(), duplicates->end(),
@@ -61,9 +60,8 @@ void BindingHash::sort_duplicates_vector_by_location(
});
}
-void BindingHash::call_callbacks(const ValueTypeVector& duplicates,
- DuplicateCallback callback,
- void* user_data) const {
+void BindingHash::CallCallbacks(const ValueTypeVector& duplicates,
+ DuplicateCallback callback) const {
// Loop through all duplicates in order, and call callback with first
// occurrence.
for (auto iter = duplicates.begin(), end = duplicates.end(); iter != end;
@@ -75,7 +73,7 @@ void BindingHash::call_callbacks(const ValueTypeVector& duplicates,
if (first == iter)
continue;
assert(first != duplicates.end());
- callback(**first, **iter, user_data);
+ callback(**first, **iter);
}
}