From a3a7cea1d86da0f755e25ec04a0a9e56c2e4aeda Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Wed, 13 Sep 2023 11:36:32 -0400 Subject: [PATCH] add `typename` needed for some clang compilers here --- libraries/chain/webassembly/runtimes/eos-vm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/webassembly/runtimes/eos-vm.cpp b/libraries/chain/webassembly/runtimes/eos-vm.cpp index 345e8cd94b..813affc045 100644 --- a/libraries/chain/webassembly/runtimes/eos-vm.cpp +++ b/libraries/chain/webassembly/runtimes/eos-vm.cpp @@ -287,7 +287,7 @@ std::unique_ptr eos_vm_profile_runtime::inst #endif template -thread_local eos_vm_runtime::context_t eos_vm_runtime::_exec_ctx; +thread_local typename eos_vm_runtime::context_t eos_vm_runtime::_exec_ctx; template thread_local eos_vm_backend_t eos_vm_runtime::_bkend; }