cpp-backend-reference
cpp-backend-reference copied to clipboard
fix: sizeof(other.m_data) -> strlen(other.m_data)
sizeof 获取的是指针的字节个数,other.m_data 此时不是数组,是一个指针。