summaryrefslogtreecommitdiffstats
path: root/source/core/slang-string.cpp
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2020-03-02 19:14:18 -0500
committerGitHub <noreply@github.com>2020-03-02 19:14:18 -0500
commitcbba1f2ba451f31e910d59fb9efbadc5e370c095 (patch)
treecf34d86713e2f915a42ce4ece11b7da82b9d4454 /source/core/slang-string.cpp
parentdbd8e8dc0847338a2a93d35385f48b5ce5671dd6 (diff)
Renamed UnownedStringSlice::size to getLength to make match String. (#1254)
Diffstat (limited to 'source/core/slang-string.cpp')
-rw-r--r--source/core/slang-string.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/core/slang-string.cpp b/source/core/slang-string.cpp
index 22049f82d..df711218c 100644
--- a/source/core/slang-string.cpp
+++ b/source/core/slang-string.cpp
@@ -74,8 +74,8 @@ namespace Slang
bool UnownedStringSlice::startsWith(UnownedStringSlice const& other) const
{
- UInt thisSize = size();
- UInt otherSize = other.size();
+ UInt thisSize = getLength();
+ UInt otherSize = other.getLength();
if (otherSize > thisSize)
return false;
@@ -91,8 +91,8 @@ namespace Slang
bool UnownedStringSlice::endsWith(UnownedStringSlice const& other) const
{
- UInt thisSize = size();
- UInt otherSize = other.size();
+ UInt thisSize = getLength();
+ UInt otherSize = other.getLength();
if (otherSize > thisSize)
return false;