Fix warning, noted by Daniela Engert

This commit is contained in:
Antony Polukhin
2018-02-20 23:02:00 +03:00
parent a0f948e9f5
commit 4603c1725d
3 changed files with 4 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
// Copyright Antony Polukhin, 2016-2017.
// Copyright Antony Polukhin, 2016-2018.
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
@@ -28,8 +28,6 @@ void my_signal_handler(int /*signum*/) {
int main() {
::signal(SIGSEGV, &my_signal_handler);
print_signal_handler_and_exit();
return 2;
}