From 6cea410eaa6f782fff5973638133cb3b9d87ec38 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=87=8D=E8=A3=85=E5=B0=8F=E6=9D=B0?=
 <73771431+beiklive@users.noreply.github.com>
Date: Fri, 23 Dec 2022 01:00:27 +0800
Subject: [PATCH] Remove punctuation that affects compilation (#531)

---
 src/ftxui/component/screen_interactive.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ftxui/component/screen_interactive.cpp b/src/ftxui/component/screen_interactive.cpp
index 4f3279eb..7617d364 100644
--- a/src/ftxui/component/screen_interactive.cpp
+++ b/src/ftxui/component/screen_interactive.cpp
@@ -243,7 +243,7 @@ void InstallSignalHandler(int sig) {
   auto old_signal_handler = std::signal(sig, RecordSignal);
   on_exit_functions.push(
       [=] { std::ignore = std::signal(sig, old_signal_handler); });
-};
+}
 
 const std::string CSI = "\x1b[";  // NOLINT
 
-- 
GitLab