From 6c43bc8c6284610230f2e13b43c17be415d9e23e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 16 Mar 2025 04:49:06 +0100 Subject: KString.cc: Use this-> in code. Signed-off-by: Amlal El Mahrouss --- dev/Kernel/src/KString.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev') diff --git a/dev/Kernel/src/KString.cc b/dev/Kernel/src/KString.cc index dbc730fd..d96ef38c 100644 --- a/dev/Kernel/src/KString.cc +++ b/dev/Kernel/src/KString.cc @@ -34,7 +34,7 @@ namespace NeOS for (Size index = 0; index < this->Length(); ++index) { - if (rhs.fData[index] != fData[index]) + if (rhs.fData[index] != this->fData[index]) return false; } @@ -48,7 +48,7 @@ namespace NeOS for (Size index = 0; index < rt_string_len(rhs); ++index) { - if (rhs[index] != fData[index]) + if (rhs[index] != this->fData[index]) return false; } @@ -62,7 +62,7 @@ namespace NeOS for (Size index = 0; index < rhs.Length(); ++index) { - if (rhs.fData[index] == fData[index]) + if (rhs.fData[index] == this->fData[index]) return false; } @@ -76,7 +76,7 @@ namespace NeOS for (Size index = 0; index < rt_string_len(rhs); ++index) { - if (rhs[index] == fData[index]) + if (rhs[index] == this->fData[index]) return false; } -- cgit v1.2.3