mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-16 10:05:39 +02:00
@@ -67,9 +67,9 @@ namespace Catch
|
||||
struct SourceLineInfo
|
||||
{
|
||||
SourceLineInfo() : line( 0 ){}
|
||||
SourceLineInfo( const std::string& file, std::size_t line )
|
||||
: file( file ),
|
||||
line( line )
|
||||
SourceLineInfo( const std::string& _file, std::size_t _line )
|
||||
: file( _file ),
|
||||
line( _line )
|
||||
{}
|
||||
SourceLineInfo( const SourceLineInfo& other )
|
||||
: file( other.file ),
|
||||
|
Reference in New Issue
Block a user