diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-05-07 10:44:19 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-15 09:05:28 +0200 |
commit | 0914d09fd18560b5664ccb0ad68e5c807505a165 (patch) | |
tree | b2f2cfb28a1b2608aafeb9bdb762b09350c228b8 | |
parent | 912c94d987d3b2bd7500469090873a1575c4dbfb (diff) |
Fixes
-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 |