diff options
| author | skallweitNV <64953474+skallweitNV@users.noreply.github.com> | 2022-12-02 16:34:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-02 16:34:53 +0100 |
| commit | e9b7c66a541636e72659fbfcc9a3f20a85f2bee8 (patch) | |
| tree | b65942799ff6267ebe29c8b64056819461621be7 /source/slang/slang-compiler.cpp | |
| parent | 92ae4949fe1af28ef31331fd4116c8111c057420 (diff) | |
Cleanup crypto utilities (#2549)
* Consolidate crypto functions into single module
* Migrate rest of code to new crypto module
* Fix name conflict
Diffstat (limited to 'source/slang/slang-compiler.cpp')
| -rw-r--r-- | source/slang/slang-compiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<MD5>& 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<MD5>& builder, SlangInt entryPointIndex) { SLANG_UNUSED(entryPointIndex); |
