Skip to content

Commit b6d87cd

Browse files
committed
Fix 'unused parameter' warnings during build
1 parent 77fc17e commit b6d87cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/samplerate.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ class CallbackResampler {
328328

329329
CallbackResampler clone() const { return CallbackResampler(*this); }
330330
CallbackResampler &__enter__() { return *this; }
331-
void __exit__(const py::object &exc_type, const py::object &exc,
332-
const py::object &exc_tb) {
331+
void __exit__(const py::object &/*exc_type*/, const py::object &/*exc*/,
332+
const py::object &/*exc_tb*/) {
333333
_destroy();
334334
}
335335
};

0 commit comments

Comments
 (0)