Remove punctuation that affects compilation (#531)

This commit is contained in:
重装小杰 2022-12-23 01:00:27 +08:00 committed by GitHub
parent a52b959f66
commit 6cea410eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,7 +243,7 @@ void InstallSignalHandler(int sig) {
auto old_signal_handler = std::signal(sig, RecordSignal); auto old_signal_handler = std::signal(sig, RecordSignal);
on_exit_functions.push( on_exit_functions.push(
[=] { std::ignore = std::signal(sig, old_signal_handler); }); [=] { std::ignore = std::signal(sig, old_signal_handler); });
}; }
const std::string CSI = "\x1b["; // NOLINT const std::string CSI = "\x1b["; // NOLINT