Add const to method

This commit is contained in:
jeremy 2022-12-15 16:24:45 +01:00
parent 311994a36d
commit 1aa40e5e3f

View File

@ -520,7 +520,7 @@ class DistributedScanAllAndFilterCursor : public Cursor {
has_next_frame_ = current_vertex_it_ != current_batch_.end() && valid_frames_it_ != valid_frames_consumer_->end();
}
inline bool HasNextFrame() { return has_next_frame_; }
inline bool HasNextFrame() const { return has_next_frame_; }
FrameWithValidity GetNextFrame(ExecutionContext &context) {
MG_ASSERT(HasNextFrame());