Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix build
  • Loading branch information
lhecker committed Oct 15, 2025
commit 55e3efebcdfec0e308e7bb5c0c6b75e5dcaf8b6a
4 changes: 2 additions & 2 deletions src/buffer/out/cursor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ULONG Cursor::GetSize() const noexcept
return _ulSize;
}

void Cursor::SetIsVisible(bool enable)
void Cursor::SetIsVisible(bool enable) noexcept
{
if (_isVisible != enable)
{
Expand All @@ -56,7 +56,7 @@ void Cursor::SetIsVisible(bool enable)
}
}

void Cursor::SetIsBlinking(bool enable)
void Cursor::SetIsBlinking(bool enable) noexcept
{
if (_isBlinking != enable)
{
Expand Down
4 changes: 2 additions & 2 deletions src/buffer/out/cursor.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class Cursor final
til::point GetPosition() const noexcept;
CursorType GetType() const noexcept;

void SetIsVisible(bool enable);
void SetIsBlinking(bool enable);
void SetIsVisible(bool enable) noexcept;
void SetIsBlinking(bool enable) noexcept;
void SetIsDouble(const bool fIsDouble) noexcept;
void SetSize(const ULONG ulSize) noexcept;
void SetStyle(const ULONG ulSize, const CursorType type) noexcept;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/base/renderer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace Microsoft::Console::Render
static bool s_IsSoftFontChar(const std::wstring_view& v, const size_t firstSoftFontChar, const size_t lastSoftFontChar);

// Base rendering loop
static DWORD s_renderThread(void*) noexcept;
static DWORD WINAPI s_renderThread(void*) noexcept;
DWORD _renderThread() noexcept;
void _waitUntilCanRender() noexcept;

Expand Down
Loading