Don't Narrow String Literal to Bool

This isn't portable.
This commit is contained in:
Bård Skaflestad
2023-06-16 15:54:18 +02:00
parent dda3effdb3
commit 35117aa037

View File

@@ -70,7 +70,7 @@ std::vector< PpcwmaxRecord >::const_iterator Ppcwmax::end() const {
}
Ppcwmax Ppcwmax::serializationTestObject() {
return Ppcwmax({{45.0, "YES"}});
return Ppcwmax({{45.0, true}});
}