We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cbc02 commit 24f02f9Copy full SHA for 24f02f9
cpp-terminal/private/cursor.cpp
@@ -31,7 +31,7 @@ Term::Cursor Term::cursor_position()
31
CONSOLE_SCREEN_BUFFER_INFO inf;
32
if(GetConsoleScreenBufferInfo(Private::out.handle(), &inf)) return Term::Cursor({Row(inf.dwCursorPosition.Y + 1), Column(inf.dwCursorPosition.X + 1)});
33
else
34
- return {}
+ return {};
35
#else
36
std::string ret;
37
std::size_t nread{0};
0 commit comments