mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-03 02:17:54 +00:00
SourceLineInfo takes char*s instead of std::strings
This commit is contained in:
parent
47a5ad3038
commit
87b20e8dab
3 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ namespace Catch {
|
|||
}
|
||||
|
||||
SourceLineInfo::SourceLineInfo() : line( 0 ){}
|
||||
SourceLineInfo::SourceLineInfo( std::string const& _file, std::size_t _line )
|
||||
SourceLineInfo::SourceLineInfo( char const* _file, std::size_t _line )
|
||||
: file( _file ),
|
||||
line( _line )
|
||||
{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue