summaryrefslogtreecommitdiff
path: root/src/shell-interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell-interface.h')
-rw-r--r--src/shell-interface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shell-interface.h b/src/shell-interface.h
index 54c2e580e..139db23e5 100644
--- a/src/shell-interface.h
+++ b/src/shell-interface.h
@@ -44,7 +44,7 @@ struct ShellExternalInterface final : ModuleInstance::ExternalInterface {
class Memory {
// Use char because it doesn't run afoul of aliasing rules.
std::vector<char> memory;
- template <typename T>
+ template<typename T>
static bool aligned(const char* address) {
static_assert(!(sizeof(T) & (sizeof(T) - 1)), "must be a power of 2");
return 0 == (reinterpret_cast<uintptr_t>(address) & (sizeof(T) - 1));
@@ -68,7 +68,7 @@ struct ShellExternalInterface final : ModuleInstance::ExternalInterface {
std::memset(&memory[newSize], 0, minSize - newSize);
}
}
- template <typename T>
+ template<typename T>
void set(size_t address, T value) {
if (aligned<T>(&memory[address])) {
*reinterpret_cast<T*>(&memory[address]) = value;
@@ -76,7 +76,7 @@ struct ShellExternalInterface final : ModuleInstance::ExternalInterface {
std::memcpy(&memory[address], &value, sizeof(T));
}
}
- template <typename T>
+ template<typename T>
T get(size_t address) {
if (aligned<T>(&memory[address])) {
return *reinterpret_cast<T*>(&memory[address]);