fallthough
This commit is contained in:
parent
2c4f2653cd
commit
a603fe3d18
|
@ -11,7 +11,7 @@ OUT_MAIN = main.elf
|
|||
OBJ_MAIN = main.o
|
||||
OUT_CLI = cli.elf
|
||||
OBJ_CLI = cli.o
|
||||
CFLAGS = -std=c++14 -O3 -Wall -Wextra
|
||||
CFLAGS = -std=c++17 -O3 -Wall -Wextra
|
||||
LDFLAGS = -lcurses -lpthread
|
||||
OBJECTS_DRV = drv/usart.o drv/b15f.o drv/plottyfile.o drv/dot.o
|
||||
OBJECTS_UI = ui/view.o ui/view_selection.o ui/view_promt.o ui/view_info.o ui/view_monitor.o ui/ui.o
|
||||
|
|
|
@ -26,7 +26,7 @@ call_t ViewMonitor::keypress(int& key)
|
|||
break;
|
||||
|
||||
// fall through to next case
|
||||
__attribute__ ((fallthrough));
|
||||
[[fallthrough]];
|
||||
}
|
||||
case KEY_ENT:
|
||||
run_worker = false;
|
||||
|
|
|
@ -100,7 +100,7 @@ std::function<void(int)> ViewPromt::keypress(int& key)
|
|||
break;
|
||||
|
||||
// fall through to next case
|
||||
__attribute__ ((fallthrough));
|
||||
[[fallthrough]];
|
||||
}
|
||||
case KEY_ENT:
|
||||
if(selection == 0) // exit
|
||||
|
|
|
@ -59,7 +59,7 @@ call_t ViewSelection::keypress(int& key)
|
|||
break;
|
||||
|
||||
// fall through to next case
|
||||
__attribute__ ((fallthrough));
|
||||
[[fallthrough]];
|
||||
}
|
||||
|
||||
case KEY_ENT:
|
||||
|
|
Loading…
Reference in a new issue