summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-16 04:49:06 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-16 04:49:06 +0100
commit6c43bc8c6284610230f2e13b43c17be415d9e23e (patch)
tree2f3a8d8b18f9e28a06f2221c96cedf5ce7de73c3 /dev/Kernel
parent7714e311af10b3a7ec4f270e26d84fc5aed521ba (diff)
KString.cc: Use this-> in code.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel')
-rw-r--r--dev/Kernel/src/KString.cc8
1 files changed, 4 insertions, 4 deletions
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;
}