1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-08 10:52:58 +00:00

Be overt in empty std::string construction.

This commit is contained in:
Thomas Harte 2021-05-03 20:35:23 -04:00
parent 95f4272919
commit 32e3dd71b1

View File

@ -319,7 +319,7 @@ template <typename Owner> class StructImpl: public Struct {
if(iterator != contents_.end()) {
return iterator->first;
} else {
return "";
return std::string();
}
}