mirror of
https://github.com/catchorg/Catch2.git
synced 2025-04-04 01:24:47 +02:00
Don't debug log empty strings
This commit is contained in:
parent
02ab64da2e
commit
1b1f3a88bc
@ -64,9 +64,11 @@ namespace Detail {
|
||||
|
||||
struct OutputDebugWriter {
|
||||
|
||||
void operator()( std::string const&str ) {
|
||||
void operator()( std::string const& str ) {
|
||||
if ( !str.empty() ) {
|
||||
writeToDebugConsole( str );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
x
Reference in New Issue
Block a user