Remove unused param

This commit is contained in:
jeremy 2022-12-01 16:57:09 +01:00
parent 616b79ce6c
commit d0e1d86df3
2 changed files with 1 additions and 1 deletions

0
jba.txt Normal file
View File

View File

@ -107,7 +107,7 @@ class ValidFramesReader {
using pointer = value_type *;
using reference = const Frame &;
explicit Iterator(FrameWithValidity *ptr, ValidFramesReader &iterator_wrapper) : ptr_(ptr) {}
explicit Iterator(FrameWithValidity *ptr) : ptr_(ptr) {}
reference operator*() const { return *ptr_; }
pointer operator->() { return ptr_; }