Removed __FUNCTION__ from SourceLineInfo

This commit is contained in:
Phil Nash 2012-11-02 08:29:03 +00:00
parent 2a1e8bfc6e
commit a4e088c999
2 changed files with 0 additions and 8 deletions

View file

@ -17,8 +17,6 @@ namespace Catch {
: m_lineInfo( lineInfo ) {
std::ostringstream oss;
oss << lineInfo << "function ";
if( !lineInfo.function.empty() )
oss << lineInfo.function << " ";
oss << "not implemented";
m_what = oss.str();
}