diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-12-28 15:57:23 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-12-28 15:57:48 +0300 |
commit | 86c2729f92c1e59d9a8bd3fcac7e6d97b336df40 (patch) | |
tree | 2a3fbf9970a2eb7b34cc058b5ef41ca3fbb042e1 | |
parent | acb4dbd7600a9670b33e3a28fdc719263e7f1095 (diff) |
Work around GCC 13.2.1 segfault
-rw-r--r-- | bpkg/manifest-utility.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bpkg/manifest-utility.cxx b/bpkg/manifest-utility.cxx index b0b599b..afcb1f7 100644 --- a/bpkg/manifest-utility.cxx +++ b/bpkg/manifest-utility.cxx @@ -57,6 +57,8 @@ namespace bpkg if (r.size () < ds.size ()) dr << ds[r.size ()] << ' '; dr << "info: " << e << info << "produced by '" << b << "'; use --build to override" << endf; + + return vector<package_info> (); // Work around GCC 13.2.1 segfault. } } |