diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-05-08 12:21:10 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-06-05 09:12:46 +0200 |
commit | 68698cb2b45862fdac43850644ebffe1191dae5a (patch) | |
tree | e3490b1e1cfdc6f631a1de10c055b35aa2de597e /mod/mod-ci-github-gh.cxx | |
parent | 52d57a6b35def1b4cc4266503d7ac40739ac7e2b (diff) |
Review
Diffstat (limited to 'mod/mod-ci-github-gh.cxx')
-rw-r--r-- | mod/mod-ci-github-gh.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/mod-ci-github-gh.cxx b/mod/mod-ci-github-gh.cxx index ad986e3..90389f3 100644 --- a/mod/mod-ci-github-gh.cxx +++ b/mod/mod-ci-github-gh.cxx @@ -22,7 +22,7 @@ namespace brep case build_state::built: return "COMPLETED"; } - assert (false); + return ""; // Should never reach. } // Return the build_state corresponding to a GitHub check run status @@ -63,7 +63,7 @@ namespace brep to_string (rs)); } - assert (false); + return ""; // Should never reach. } string |