Skip to content

Commit

Permalink
Remove _Elem for static_cast
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Jan 25, 2025
1 parent 94b09b7 commit a60edca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ int ErrorBuffer::overflow(int c) {
original_buffer->sputc('1');
original_buffer->sputc('m');

original_buffer->sputc(static_cast<_Elem>(c));
original_buffer->sputc(c);

original_buffer->sputc('\033');
original_buffer->sputc('[');
Expand Down

0 comments on commit a60edca

Please sign in to comment.