mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Declare single-argument (non-converting) constructors "explicit"
In order to avoid unintended implicit conversions.
This commit is contained in:
parent
22e301a3d5
commit
64fb0ac016
68 changed files with 105 additions and 105 deletions
|
|
@ -231,7 +231,7 @@ struct StringContentsSerializer {
|
|||
// This is a terrible idea
|
||||
std::string str;
|
||||
StringContentsSerializer() {}
|
||||
StringContentsSerializer(const std::string& inp) : str(inp) {}
|
||||
explicit StringContentsSerializer(const std::string& inp) : str(inp) {}
|
||||
|
||||
StringContentsSerializer& operator+=(const std::string& s) {
|
||||
str += s;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue