From e9b7c66a541636e72659fbfcc9a3f20a85f2bee8 Mon Sep 17 00:00:00 2001 From: skallweitNV <64953474+skallweitNV@users.noreply.github.com> Date: Fri, 2 Dec 2022 16:34:53 +0100 Subject: Cleanup crypto utilities (#2549) * Consolidate crypto functions into single module * Migrate rest of code to new crypto module * Fix name conflict --- source/slang/slang-compiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/slang/slang-compiler.cpp') diff --git a/source/slang/slang-compiler.cpp b/source/slang/slang-compiler.cpp index a5e2003c2..ce0ae4085 100644 --- a/source/slang/slang-compiler.cpp +++ b/source/slang/slang-compiler.cpp @@ -224,7 +224,7 @@ namespace Slang } void EntryPoint::updateDependencyBasedHash( - DigestBuilder& builder, + DigestBuilder& builder, SlangInt entryPointIndex) { // CompositeComponentType will have already hashed the relevant entry point's name @@ -302,7 +302,7 @@ namespace Slang } void TypeConformance::updateDependencyBasedHash( - DigestBuilder& builder, + DigestBuilder& builder, SlangInt entryPointIndex) { SLANG_UNUSED(entryPointIndex); -- cgit v1.2.3