Skip to content
Snippets Groups Projects
Commit 4c742051 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix warning unused parameter

parent f5612801
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
 
namespace std {
 
void SigsegvHandler::handler(int sig) {
void SigsegvHandler::handler(int) {
std::cout << std::stacktrace() << std::endl;
exit(1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment