diff options
| author | Yong He <yonghe@outlook.com> | 2023-12-06 15:52:02 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-06 15:52:02 -0800 |
| commit | 8102e5ee81db177372bb90188c65d003a4907aa4 (patch) | |
| tree | 2ea145d7a58abe395e1765009bc943d97933104b /source/slang/slang.cpp | |
| parent | 11111e5733b189127dc2c4934d67693b9bc6e764 (diff) | |
Change default visibility of interface members and update docs. (#3381)
* Update behavior around interfaces and docs.
* Update toc
---------
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'source/slang/slang.cpp')
| -rw-r--r-- | source/slang/slang.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source/slang/slang.cpp b/source/slang/slang.cpp index 0f53ffcd5..2852dd43e 100644 --- a/source/slang/slang.cpp +++ b/source/slang/slang.cpp @@ -1117,12 +1117,6 @@ SLANG_NO_THROW slang::IModule* SLANG_MCALL Linkage::loadModuleFromSource( if (SLANG_SUCCEEDED(Path::getCanonical(pathStr, cannonicalPath))) { pathInfo = PathInfo::makeNormal(pathStr, cannonicalPath); - ComPtr<ISlangBlob> uniqueIdentity; - getFileSystemExt()->getFileUniqueIdentity(cannonicalPath.getBuffer(), uniqueIdentity.writeRef()); - if (uniqueIdentity && uniqueIdentity->getBufferSize() != 0) - { - pathInfo.uniqueIdentity = (char*)uniqueIdentity->getBufferPointer(); - } } } auto module = loadModule( |
