Skip to content

Commit

Permalink
Solve issues with atomic copy (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
felrock authored May 26, 2024
1 parent ecacb22 commit 7b1f4d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ftxui/component/screen_interactive.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class ScreenInteractive : public Screen {
std::string set_cursor_position;
std::string reset_cursor_position;

std::atomic<bool> quit_ = false;
std::atomic<bool> quit_{false};
std::thread event_listener_;
std::thread animation_listener_;
bool animation_requested_ = false;
Expand Down

0 comments on commit 7b1f4d4

Please sign in to comment.