This commit is contained in:
blueloveTH 2023-06-15 21:47:41 +08:00
parent 8e21cd4baf
commit 58adfe6d17

View File

@ -118,7 +118,7 @@ struct Str{
} }
friend std::ostream& operator<<(std::ostream& os, const Str& str){ friend std::ostream& operator<<(std::ostream& os, const Str& str){
if(str.data!=nullptr) os.write(str.data, str.size); os.write(str.data, str.size);
return os; return os;
} }