From 7c0d5cf7619b1504e8aeedf0acea4e5f45cd5f7c Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Wed, 28 Nov 2018 23:36:06 +0100 Subject: [PATCH] update --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ee362060..c899ad16 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,8 @@ int main() { // iterate over bins std::ostringstream os; for (auto x : bh::indexed(h)) { - os << boost::format("bin %2i [%4.1f, %4.1f): %i\n") % x[0] % x.bin(0).lower() % x.bin(0).upper() % x.value; + os << boost::format("bin %2i [%4.1f, %4.1f): %i\n") + % x[0] % x.bin(0).lower() % x.bin(0).upper() % x.value; } std::cout << os.str() << std::flush;