diff options
| author | skallweitNV <64953474+skallweitNV@users.noreply.github.com> | 2022-11-30 22:26:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-30 13:26:55 -0800 |
| commit | 976f578585a4d4ed24e37d0c45a94a8e6afcff19 (patch) | |
| tree | 60897092962bfd562d026b81a29096efbfc85816 /source/slang/slang-compiler.cpp | |
| parent | 09684224d5ab63f530d66c0be65fa50e6fc5290b (diff) | |
Cleanup DigestBuilder and MD5HashGen (#2539)
* Cleanup DigestBuilder and MD5HashGen
* Fix templates
Co-authored-by: Yong He <yonghe@outlook.com>
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 b02421c46..a5e2003c2 100644 --- a/source/slang/slang-compiler.cpp +++ b/source/slang/slang-compiler.cpp @@ -310,8 +310,8 @@ namespace Slang //TODO: Implement some kind of hashInto for Val then replace this auto subtypeWitness = m_subtypeWitness->toString(); - builder.addToDigest(subtypeWitness); - builder.addToDigest(m_conformanceIdOverride); + builder.append(subtypeWitness); + builder.append(m_conformanceIdOverride); } List<Module*> const& TypeConformance::getModuleDependencies() |
