mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#6018 Fix std::string/QByteArray ambiguous overload for assignment operator.
Broke build on Ubuntu 20.04, gcc 9.3.
This commit is contained in:
parent
23202c9f15
commit
cfb54a428c
@ -1376,7 +1376,7 @@ int RiaApplication::launchUnitTests()
|
||||
QString filterText = RiaPreferences::current()->gtestFilter();
|
||||
if ( !filterText.isEmpty() )
|
||||
{
|
||||
::testing::GTEST_FLAG( filter ) = filterText.toLatin1();
|
||||
::testing::GTEST_FLAG( filter ) = filterText.toStdString();
|
||||
|
||||
// Example on filter syntax
|
||||
//::testing::GTEST_FLAG( filter ) = "*RifCaseRealizationParametersReaderTest*";
|
||||
|
Loading…
Reference in New Issue
Block a user