Skip to content

Commit 24f02f9

Browse files
committed
fix
1 parent 30cbc02 commit 24f02f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp-terminal/private/cursor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Term::Cursor Term::cursor_position()
3131
CONSOLE_SCREEN_BUFFER_INFO inf;
3232
if(GetConsoleScreenBufferInfo(Private::out.handle(), &inf)) return Term::Cursor({Row(inf.dwCursorPosition.Y + 1), Column(inf.dwCursorPosition.X + 1)});
3333
else
34-
return {}
34+
return {};
3535
#else
3636
std::string ret;
3737
std::size_t nread{0};

0 commit comments

Comments
 (0)