fix [-Wdeprecated-copy]

This commit is contained in:
Garux 2021-01-01 17:44:18 +03:00
parent 3cbe922765
commit 155d633ae9

View File

@ -344,6 +344,9 @@ String( const char* string )
String( StringRange range )
: Buffer( range ){
}
String( const String& other )
: Buffer( other ){
}
String& operator=( const String& other ){
String temp( other );