mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-02 13:25:41 +02:00
Removed __FUNCTION__ from SourceLineInfo
This commit is contained in:
@@ -109,11 +109,6 @@ namespace Catch {
|
|||||||
: file( _file ),
|
: file( _file ),
|
||||||
line( _line )
|
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 )
|
SourceLineInfo( const SourceLineInfo& other )
|
||||||
: file( other.file ),
|
: file( other.file ),
|
||||||
line( other.line )
|
line( other.line )
|
||||||
@@ -126,7 +121,6 @@ namespace Catch {
|
|||||||
return file.empty();
|
return file.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string function;
|
|
||||||
std::string file;
|
std::string file;
|
||||||
std::size_t line;
|
std::size_t line;
|
||||||
};
|
};
|
||||||
|
@@ -17,8 +17,6 @@ namespace Catch {
|
|||||||
: m_lineInfo( lineInfo ) {
|
: m_lineInfo( lineInfo ) {
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
oss << lineInfo << "function ";
|
oss << lineInfo << "function ";
|
||||||
if( !lineInfo.function.empty() )
|
|
||||||
oss << lineInfo.function << " ";
|
|
||||||
oss << "not implemented";
|
oss << "not implemented";
|
||||||
m_what = oss.str();
|
m_what = oss.str();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user