diff options
Diffstat (limited to 'src/common/dumb_ptr.hpp')
-rw-r--r-- | src/common/dumb_ptr.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/dumb_ptr.hpp b/src/common/dumb_ptr.hpp index 1ac237a..bf97f22 100644 --- a/src/common/dumb_ptr.hpp +++ b/src/common/dumb_ptr.hpp @@ -25,7 +25,7 @@ # include <algorithm> -# include "../strings/fstring.hpp" +# include "../strings/astring.hpp" # include "../strings/zstring.hpp" # include "../strings/xstring.hpp" @@ -246,7 +246,7 @@ struct dumb_string return ZString(strings::really_construct_from_a_pointer, c_str(), nullptr); } - FString str() const + AString str() const { return ZString(*this); } |