From b7a619b45b0745f166d2dcc5985b994fb1d85d13 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:40:53 -0700 Subject: Replace the word stdlib or standard-library with core-module for source code (#5415) This commit changes the word "stdlib" or "standard library" to "core module" in the source code. --- source/slang/slang-core-module.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/slang/slang-core-module.cpp') diff --git a/source/slang/slang-core-module.cpp b/source/slang/slang-core-module.cpp index 8867ba1c3..5b163e594 100644 --- a/source/slang/slang-core-module.cpp +++ b/source/slang/slang-core-module.cpp @@ -8,9 +8,9 @@ namespace Slang { - String Session::getStdlibPath() + String Session::getCoreModulePath() { - if(stdlibPath.getLength() == 0) + if(coreModulePath.getLength() == 0) { // Make sure we have a line of text from __FILE__, that we'll extract the filename from List lines; @@ -18,8 +18,8 @@ namespace Slang SLANG_ASSERT(lines.getCount() > 0 && lines[0].getLength() > 0); // Make the path just the filename to remove issues around path being included on different targets - stdlibPath = Path::getFileName(lines[0]); + coreModulePath = Path::getFileName(lines[0]); } - return stdlibPath; + return coreModulePath; } } -- cgit v1.2.3