summaryrefslogtreecommitdiff
path: root/source/slang/slang-stdlib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-stdlib.cpp')
-rw-r--r--source/slang/slang-stdlib.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/slang-stdlib.cpp b/source/slang/slang-stdlib.cpp
index 183bed9ba..d2d29beae 100644
--- a/source/slang/slang-stdlib.cpp
+++ b/source/slang/slang-stdlib.cpp
@@ -12,7 +12,7 @@ namespace Slang
{
String Session::getStdlibPath()
{
- if(stdlibPath.Length() != 0)
+ if(stdlibPath.getLength() != 0)
return stdlibPath;
StringBuilder pathBuilder;
@@ -244,7 +244,7 @@ namespace Slang
String Session::getCoreLibraryCode()
{
- if (coreLibraryCode.Length() > 0)
+ if (coreLibraryCode.getLength() > 0)
return coreLibraryCode;
StringBuilder sb;
@@ -264,7 +264,7 @@ namespace Slang
String Session::getHLSLLibraryCode()
{
- if (hlslLibraryCode.Length() > 0)
+ if (hlslLibraryCode.getLength() > 0)
return hlslLibraryCode;
StringBuilder sb;