mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 03:02:24 +01:00
[On behalf of Lexmark]: Initialize scalar fields in catch_test_spec_parser.hpp
This commit is contained in:
parent
e684a0f6d3
commit
f31903ca3f
@ -29,7 +29,12 @@ namespace Catch {
|
|||||||
ITagAliasRegistry const* m_tagAliases;
|
ITagAliasRegistry const* m_tagAliases;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TestSpecParser( ITagAliasRegistry const& tagAliases ) : m_tagAliases( &tagAliases ) {}
|
TestSpecParser( ITagAliasRegistry const& tagAliases )
|
||||||
|
: m_tagAliases( &tagAliases ),
|
||||||
|
m_mode( None ),
|
||||||
|
m_exclusion( false ),
|
||||||
|
m_start( std::string::npos ),
|
||||||
|
m_pos( 0 ) {}
|
||||||
|
|
||||||
TestSpecParser& parse( std::string const& arg ) {
|
TestSpecParser& parse( std::string const& arg ) {
|
||||||
m_mode = None;
|
m_mode = None;
|
||||||
|
Loading…
Reference in New Issue
Block a user