diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2025-01-06 17:23:28 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2025-01-06 17:23:28 +0200 |
commit | d4a98d6461e9dc48200623dc8c45a6f35586f8ad (patch) | |
tree | 89ee468fb7fae71105c9c100fb7c569bd096ccda /mod/mod-ci-github-service-data.cxx | |
parent | 95f949abe777f8e0fd481617ea64768a7e3ec37c (diff) |
Make buildable with GCC 8.3
Diffstat (limited to 'mod/mod-ci-github-service-data.cxx')
-rw-r--r-- | mod/mod-ci-github-service-data.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mod/mod-ci-github-service-data.cxx b/mod/mod-ci-github-service-data.cxx index 9f66a6c..4598302 100644 --- a/mod/mod-ci-github-service-data.cxx +++ b/mod/mod-ci-github-service-data.cxx @@ -113,7 +113,14 @@ namespace brep } } - check_runs.emplace_back (move (bid), move (nm), move (nid), s, ss, rs); + check_runs.push_back ( + check_run {move (bid), + move (nm), + move (nid), + s, + ss, + rs, + nullopt /* details_url */}); p.next_expect (event::end_object); } |