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

@ -109,11 +109,6 @@ namespace Catch {
: file( _file ),
line( _line )
{}
SourceLineInfo( const std::string& _function, const std::string& _file, std::size_t _line )
: function( _function ),
file( _file ),
line( _line )
{}
SourceLineInfo( const SourceLineInfo& other )
: file( other.file ),
line( other.line )
@ -126,7 +121,6 @@ namespace Catch {
return file.empty();
}
std::string function;
std::string file;
std::size_t line;
};

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();
}