summaryrefslogtreecommitdiff
path: root/src/tools/wasm-ctor-eval.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wasm-ctor-eval.cpp')
-rw-r--r--src/tools/wasm-ctor-eval.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp
index 07e883b8f..38be8b7b4 100644
--- a/src/tools/wasm-ctor-eval.cpp
+++ b/src/tools/wasm-ctor-eval.cpp
@@ -263,7 +263,7 @@ struct CtorEvalExternalInterface : EvallingModuleInstance::ExternalInterface {
private:
// TODO: handle unaligned too, see shell-interface
- template <typename T>
+ template<typename T>
T* getMemory(Address address) {
// if memory is on the stack, use the stack
if (address >= STACK_START) {
@@ -295,13 +295,13 @@ private:
return (T*)(&data[address]);
}
- template <typename T>
+ template<typename T>
void doStore(Address address, T value) {
// do a memcpy to avoid undefined behavior if unaligned
memcpy(getMemory<T>(address), &value, sizeof(T));
}
- template <typename T>
+ template<typename T>
T doLoad(Address address) {
// do a memcpy to avoid undefined behavior if unaligned
T ret;