Catch-all for std::invalid_argument for g++<8
This commit is contained in:
parent
859d3f3c3c
commit
3fa7b091c3
@ -92,7 +92,7 @@ int main(int argc, char *argv[]) {
|
||||
float threshold = 0.0f;
|
||||
try {
|
||||
threshold = stof(config["threshold"]);
|
||||
} catch (std::invalid_argument) {
|
||||
} catch (...) {
|
||||
}
|
||||
// create swipe handler
|
||||
gesture_swipe_xdokey keyswipe(commands, threshold);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user