1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

AK: Stop using DeprecatedString in UUID

This commit is contained in:
Jelle Raaijmakers 2022-12-18 23:24:02 +01:00 committed by Andreas Kling
parent f050a426f5
commit 99c1b634fc
2 changed files with 14 additions and 13 deletions

View file

@ -14,7 +14,7 @@
#ifdef KERNEL
# include <Kernel/KString.h>
#else
# include <AK/DeprecatedString.h>
# include <AK/String.h>
#endif
namespace AK {
@ -36,7 +36,7 @@ public:
#ifdef KERNEL
ErrorOr<NonnullOwnPtr<Kernel::KString>> to_string() const;
#else
DeprecatedString to_deprecated_string() const;
ErrorOr<String> to_string() const;
#endif
bool is_zero() const;