1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-01 21:03:52 +00:00

Explicit ctor used to fix compilation failures caused by copy

initialization.
This commit is contained in:
offa 2017-08-31 23:38:52 +02:00 committed by Phil Nash
parent 115db71bab
commit be067bce37

View File

@ -19,7 +19,7 @@ namespace Catch {
}
std::set<Verbosity> MultipleReporters::getSupportedVerbosities() {
return { };
return std::set<Verbosity>{ };
}