aboutsummaryrefslogtreecommitdiff
path: root/bbot/utility.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-02-11 19:44:19 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-02-14 10:26:49 +0300
commit422563c63b2aedaa32fa217aca92b369ac4be755 (patch)
treeec2de1c8f5fc14fb839ce0cbc69dcf4b160b7c73 /bbot/utility.hxx
parent30411915355d6946de11638daf98724ab41a9acd (diff)
Fix result manifest request failures due to exceeding request size limit
Diffstat (limited to 'bbot/utility.hxx')
-rw-r--r--bbot/utility.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/bbot/utility.hxx b/bbot/utility.hxx
index 2bc0320..35136bd 100644
--- a/bbot/utility.hxx
+++ b/bbot/utility.hxx
@@ -147,7 +147,10 @@ namespace bbot
template <typename T>
void
- serialize_manifest (const T&, const path&, const char* what);
+ serialize_manifest (const T&,
+ const path&,
+ const char* what,
+ bool long_lines = false);
template <typename T>
void
@@ -155,7 +158,8 @@ namespace bbot
ostream&,
const string& name,
const char* what,
- bool fail_hard = true);
+ bool fail_hard = true,
+ bool long_lines = false);
}
#include <bbot/utility.txx>