Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Dec 18, 2024
1 parent 529f262 commit f56a010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/data-model-provider/Iterators.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ template <typename T>
class NullFastForwardIterator : public FastForwardIterator<T>
{
public:
std::optional<T> Nest() override { return std::nullopt; }
std::optional<T> Next() override { return std::nullopt; }
bool SeekTo(const T & value) override { return false; }
};

Expand Down

0 comments on commit f56a010

Please sign in to comment.