From 291959c1b35c7fbf62cd45dafbb13741cbfb10e7 Mon Sep 17 00:00:00 2001 From: Kruglov Pavel <48961922+Avogar@users.noreply.github.com> Date: Tue, 8 Dec 2020 19:19:51 +0300 Subject: [PATCH] Update comment --- src/Core/SortCursor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/SortCursor.h b/src/Core/SortCursor.h index d8b58e88440..f383c3ded8e 100644 --- a/src/Core/SortCursor.h +++ b/src/Core/SortCursor.h @@ -124,7 +124,7 @@ struct SortCursorImpl bool isValid() const { return pos < rows; } void next() { ++pos; } -/// Prevent using pos instead of getPos() +/// Prevent using pos instead of getRow() private: size_t pos; };