Fixed Debug build in Visual Studio

This commit is contained in:
SChernykh
2020-10-27 13:57:41 +01:00
parent d1b2a9c852
commit d822ffef36
11 changed files with 44 additions and 51 deletions

View File

@@ -36,7 +36,7 @@ namespace randomx {
void CompiledLightVm<softAes>::setCache(randomx_cache* cache) {
cachePtr = cache;
mem.memory = cache->memory;
compiler.generateSuperscalarHash(cache->programs, cache->reciprocalCache);
compiler.generateSuperscalarHash(cache->programs);
}
template<int softAes>