Fixed SCOPED_INFO (#123)

This commit is contained in:
Phil Nash
2012-09-24 08:28:23 +01:00
parent 5f66d1d001
commit ec2fccf6b8
2 changed files with 14 additions and 6 deletions

View File

@@ -35,8 +35,8 @@ public:
return *this;
}
std::string getInfo () const {
return m_oss.str();
ResultInfo getInfo () const {
return ResultInfo( "", ResultWas::Info, false, SourceLineInfo(), "SCOPED_INFO", m_oss.str().c_str() );
}
private: