From ca42b2c585e0c02aeaed0c884ccba5f7e6c1d11f Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 10 Jul 2014 09:18:50 +0100 Subject: [PATCH] Manual fix for generation error --- single_include/catch.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/single_include/catch.hpp b/single_include/catch.hpp index a03ee743..1fba6a34 100644 --- a/single_include/catch.hpp +++ b/single_include/catch.hpp @@ -1,6 +1,6 @@ /* * CATCH v1.0 build 52 (master branch) - * Generated: 2014-07-09 19:21:54.977279 + * Generated: 2014-07-10 09:17:43.994453 * ---------------------------------------------------------- * This file has been merged from multiple headers. Please don't edit it directly * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. @@ -8333,6 +8333,7 @@ namespace Catch { std::string row = oss.str(); for( std::vector::iterator it = rows.begin(); it != rows.end(); ++it ) { while( it->size() < row.size() ) + *it = " " + *it; while( it->size() > row.size() ) row = " " + row; }