From fbbcfd27436fe61799c79aec14f9c2c3fdf73497 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 18 Jun 2025 10:27:31 +0200 Subject: feat: PEF format update `5.0` and codebase refactors. Signed-off-by: Amlal El Mahrouss --- dev/LibCompiler/BasicString.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/LibCompiler/BasicString.h') diff --git a/dev/LibCompiler/BasicString.h b/dev/LibCompiler/BasicString.h index 5af9da9..38e585f 100644 --- a/dev/LibCompiler/BasicString.h +++ b/dev/LibCompiler/BasicString.h @@ -43,7 +43,7 @@ class BasicString final { Char* Data(); const Char* CData() const; - SizeType Length() const; + SizeType Length() const; bool operator==(const Char* rhs) const; bool operator!=(const Char* rhs) const; @@ -59,9 +59,9 @@ class BasicString final { bool operator!() { return !m_Data || m_Data[0] == 0; } private: - Char* m_Data{nullptr}; - SizeType m_Sz{0}; - SizeType m_Cur{0}; + Char* m_Data{nullptr}; + SizeType m_Sz{0}; + SizeType m_Cur{0}; friend class StringBuilder; }; -- cgit v1.2.3