summaryrefslogtreecommitdiff
path: root/src/support/utilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/utilities.h')
-rw-r--r--src/support/utilities.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/utilities.h b/src/support/utilities.h
index 36f18fa4e..07a163ef9 100644
--- a/src/support/utilities.h
+++ b/src/support/utilities.h
@@ -32,7 +32,7 @@ namespace wasm {
// Type punning needs to be done through this function to avoid undefined
// behavior: unions and reinterpret_cast aren't valid approaches.
-template <class Destination, class Source>
+template<class Destination, class Source>
inline Destination bit_cast(const Source& source) {
static_assert(sizeof(Destination) == sizeof(Source),
"bit_cast needs to be between types of the same size");