mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-27 01:31:42 +00:00
Be overt in empty std::string construction.
This commit is contained in:
parent
95f4272919
commit
32e3dd71b1
@ -319,7 +319,7 @@ template <typename Owner> class StructImpl: public Struct {
|
|||||||
if(iterator != contents_.end()) {
|
if(iterator != contents_.end()) {
|
||||||
return iterator->first;
|
return iterator->first;
|
||||||
} else {
|
} else {
|
||||||
return "";
|
return std::string();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user