Skip to content

Commit 0964665

Browse files
committed
fast_perfect_hash: fix warning
1 parent f30eccb commit 0964665

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/boost/openmethod/policies/fast_perfect_hash.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ struct fast_perfect_hash : type_hash {
150150
//! arguments.
151151
//! @param options Zero or more option objects.
152152
template<class... Options>
153-
static auto finalize(std::tuple<Options...> opts) -> void {
153+
static auto finalize(std::tuple<Options...>) -> void {
154154
detail::fast_perfect_hash_control<Registry>.clear();
155155
}
156156
};

include/boost/openmethod/policies/vptr_map.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class vptr_map : public vptr {
4848
template<class ForwardIterator, class... Options>
4949
static void initialize(
5050
ForwardIterator first, ForwardIterator last,
51-
std::tuple<Options...> opts) {
51+
std::tuple<Options...>) {
5252
decltype(vptrs) new_vptrs;
5353

5454
for (auto iter = first; iter != last; ++iter) {

0 commit comments

Comments
 (0)