Catch-all for std::invalid_argument for g++<8 (#84)

This commit is contained in:
Rico Tiongson 2020-05-07 21:37:43 +08:00 committed by GitHub
parent 859d3f3c3c
commit cb018bf335
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
v1.2.0
v1.2.1

View File

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