diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-05-07 10:44:19 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-06-05 09:12:46 +0200 |
commit | b39cbe9b04a8591ae1b538a640903f0179ffd59d (patch) | |
tree | cebda4f2e1477cb29895f0e747fa44f7573421bc /mod | |
parent | 77f9de9c742aff1d9d55534d5f0736edc0c8c631 (diff) |
Fixes
Diffstat (limited to 'mod')
-rw-r--r-- | mod/mod-ci-github-gh.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/mod-ci-github-gh.cxx b/mod/mod-ci-github-gh.cxx index c97f938..ad986e3 100644 --- a/mod/mod-ci-github-gh.cxx +++ b/mod/mod-ci-github-gh.cxx @@ -21,6 +21,8 @@ namespace brep case build_state::building: return "IN_PROGRESS"; case build_state::built: return "COMPLETED"; } + + assert (false); } // Return the build_state corresponding to a GitHub check run status @@ -60,6 +62,8 @@ namespace brep throw invalid_argument ("unexpected result_status value: " + to_string (rs)); } + + assert (false); } string |