Refactoring ResultData out of ResultInfo/ Builder pt2

This commit is contained in:
Phil Nash
2012-10-09 11:48:55 +01:00
parent 86e1915099
commit 6730512afa
7 changed files with 184 additions and 260 deletions

View File

@@ -70,7 +70,7 @@ namespace Detail {
std::string toString() const {
std::ostringstream oss;
oss << "Approx( " << m_value << ")";
oss << "Approx( " << m_value << " )";
return oss.str();
}