CNewIntroBoss progress

Former-commit-id: fb4706a250
This commit is contained in:
2022-10-30 15:47:50 -04:00
parent 3b8eb2ed04
commit d4333c1f6a
52 changed files with 284 additions and 73 deletions

View File

@@ -99,7 +99,10 @@ public:
size_t size() const { return x8_size; }
void assign(const basic_string&);
basic_string& operator=(const basic_string&);
basic_string& operator=(const basic_string& other) {
assign(other);
return *this;
}
basic_string operator+(const basic_string&);
basic_string operator+(const _CharTp*);