1
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2025-08-18 05:23:47 -07:00

use unreachable instead of break on invalid cvd enum value

This commit is contained in:
vaxerski
2022-11-26 20:46:34 +00:00
parent e2f3f5fe63
commit 92f2e342a3

@@ -399,7 +399,7 @@ void CConfigManager::configSetValueSafe(const std::string& COMMAND, const std::s
break;
}
default: {
break;
UNREACHABLE();
}
}
}