fallthough

This commit is contained in:
Tristan Krause 2019-05-15 10:55:32 +02:00
parent 2c4f2653cd
commit a603fe3d18
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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;

View file

@ -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

View file

@ -59,7 +59,7 @@ call_t ViewSelection::keypress(int& key)
break;
// fall through to next case
__attribute__ ((fallthrough));
[[fallthrough]];
}
case KEY_ENT: