aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/types.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-12-05 17:48:16 +0100
committerEelco Dolstra <edolstra@gmail.com>2019-12-05 19:58:49 +0100
commit603b2f583c3be45481d2d0e45e8ee8bfa9cfbfcf (patch)
tree51c4c7671d107f0eb49f1b52e11dfa58d2940df5 /src/libutil/types.hh
parent334b8f8af1c47970e6cdf3ca6f45dfb8cd8e7938 (diff)
Revert "Make fmt() non-recursive"
This reverts commit 2b761d5f50b7dc17dc55c31980c2253c37b3c920. Also *really* make fmt() take arguments by reference.
Diffstat (limited to 'src/libutil/types.hh')
-rw-r--r--src/libutil/types.hh12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh
index 4a6be28a2..5d3e76421 100644
--- a/src/libutil/types.hh
+++ b/src/libutil/types.hh
@@ -51,6 +51,16 @@ struct FormatOrString
... a_n’. However, ‘fmt(s)’ is equivalent to ‘s’ (so no %-expansion
takes place). */
+inline void formatHelper(boost::format & f)
+{
+}
+
+template<typename T, typename... Args>
+inline void formatHelper(boost::format & f, const T & x, const Args & ... args)
+{
+ formatHelper(f % x, args...);
+}
+
inline std::string fmt(const std::string & s)
{
return s;
@@ -71,7 +81,7 @@ inline std::string fmt(const std::string & fs, const Args & ... args)
{
boost::format f(fs);
f.exceptions(boost::io::all_error_bits ^ boost::io::too_many_args_bit);
- nop{boost::io::detail::feed(f, args)...};
+ formatHelper(f, args...);
return f.str();
}