Skip to content

Commit

Permalink
Make audit happy
Browse files Browse the repository at this point in the history
  • Loading branch information
j4james committed Aug 8, 2024
1 parent b0f2f8e commit 2aa16b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/terminal/adapter/PageManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const TextAttribute& Page::Attributes() const noexcept
return _buffer.GetCurrentAttributes();
}

void Page::SetAttributes(const TextAttribute& attr) const
void Page::SetAttributes(const TextAttribute& attr) const noexcept
{
_buffer.SetCurrentAttributes(attr);
}
Expand Down
2 changes: 1 addition & 1 deletion src/terminal/adapter/PageManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Microsoft::Console::VirtualTerminal
til::CoordType Number() const noexcept;
Cursor& Cursor() const noexcept;
const TextAttribute& Attributes() const noexcept;
void SetAttributes(const TextAttribute& attr) const;
void SetAttributes(const TextAttribute& attr) const noexcept;
til::size Size() const noexcept;
til::CoordType Top() const noexcept;
til::CoordType Bottom() const noexcept;
Expand Down

0 comments on commit 2aa16b4

Please sign in to comment.