We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34fd16 commit 8f0a388Copy full SHA for 8f0a388
Core/GameEngine/Include/Common/UnicodeString.h
@@ -142,11 +142,11 @@ class UnicodeString
142
/**
143
Constructor -- from a literal string. Constructs an UnicodeString
144
with the given string. Note that a copy of the string is made;
145
- the input ptr is not saved. Note also that this is declared
146
- 'explicit' to avoid implicit conversions from const-WideChar-*
147
- (e.g., as input arguments).
+ the input ptr is not saved.
+ Note that this is no longer explicit, as the conversion is almost
+ always wanted, anyhow.
148
*/
149
- explicit UnicodeString(const WideChar* s);
+ UnicodeString(const WideChar* s);
150
151
152
Destructor. Not too exciting... clean up the works and such.
0 commit comments