Strings - Automatically construct from char*
This commit is contained in:
parent
302894e404
commit
2e8092af9a
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class T_String
|
||||||
// - create a dynamic string otherwise.
|
// - create a dynamic string otherwise.
|
||||||
// Because of this, it is relatively slow and should be avoided in
|
// Because of this, it is relatively slow and should be avoided in
|
||||||
// general.
|
// general.
|
||||||
explicit T_String( char const* initial );
|
T_String( char const* initial );
|
||||||
|
|
||||||
T_String( T_StringBuilder&& sb );
|
T_String( T_StringBuilder&& sb );
|
||||||
T_String( T_StringBuilder const& sb );
|
T_String( T_StringBuilder const& sb );
|
||||||
|
|
Loading…
Reference in a new issue