From 8102e5ee81db177372bb90188c65d003a4907aa4 Mon Sep 17 00:00:00 2001 From: Yong He Date: Wed, 6 Dec 2023 15:52:02 -0800 Subject: Change default visibility of interface members and update docs. (#3381) * Update behavior around interfaces and docs. * Update toc --------- Co-authored-by: Yong He --- source/slang/slang.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'source/slang/slang.cpp') 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 uniqueIdentity; - getFileSystemExt()->getFileUniqueIdentity(cannonicalPath.getBuffer(), uniqueIdentity.writeRef()); - if (uniqueIdentity && uniqueIdentity->getBufferSize() != 0) - { - pathInfo.uniqueIdentity = (char*)uniqueIdentity->getBufferPointer(); - } } } auto module = loadModule( -- cgit v1.2.3