Merge pull request #1939 from cohcho/fix_gcc_4.8.x

CompiledVm: define default constructor
This commit is contained in:
xmrig 2020-11-09 23:37:28 +07:00 committed by GitHub
commit 057fbf7608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,6 +41,7 @@ namespace randomx {
class CompiledVm : public VmBase<softAes>
{
public:
inline CompiledVm() {}
void* operator new(size_t, void* ptr) { return ptr; }
void operator delete(void*) {}