alliedmodders / amtl

AlliedModders C++ Template Library
29 stars 19 forks source link

Remove AString and replace uses with std::string. #97

Closed dvander closed 4 years ago

dvander commented 4 years ago

It's difficult to mix AString with third-party C++ code that uses std::string. The only advantage AString provides is being able to transfer ownership of the underlying buffer, but that is not enough to warrant maintaining this half-implemented class.