Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
@@ -308,7 +308,7 @@ Color::operator std::string () const
|
||||
if (_value & _COLOR_BRIGHT)
|
||||
description += std::string (description.length () ? " " : "") + "bright";
|
||||
|
||||
description += " " + bg ();
|
||||
description += ' ' + bg ();
|
||||
}
|
||||
|
||||
return description;
|
||||
|
||||
Reference in New Issue
Block a user