diff options
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/bits.h | 12 | ||||
-rw-r--r-- | src/support/file.cpp | 2 | ||||
-rw-r--r-- | src/support/file.h | 4 | ||||
-rw-r--r-- | src/support/name.h | 2 | ||||
-rw-r--r-- | src/support/utilities.h | 2 |
5 files changed, 11 insertions, 11 deletions
diff --git a/src/support/bits.h b/src/support/bits.h index 73d71e804..f1dc4364f 100644 --- a/src/support/bits.h +++ b/src/support/bits.h @@ -56,30 +56,30 @@ extern template int CountLeadingZeroes(uint64_t); // Convenience signed -> unsigned. It usually doesn't make much sense to use bit // functions on signed types. -template <typename T> +template<typename T> int PopCount(T v) { return PopCount(typename std::make_unsigned<T>::type(v)); } -template <typename T> +template<typename T> int CountTrailingZeroes(T v) { return CountTrailingZeroes(typename std::make_unsigned<T>::type(v)); } -template <typename T> +template<typename T> int CountLeadingZeroes(T v) { return CountLeadingZeroes(typename std::make_unsigned<T>::type(v)); } -template <typename T> +template<typename T> bool IsPowerOf2(T v) { return v != 0 && PopCount(v) == 1; } -template <typename T, typename U> +template<typename T, typename U> inline static T RotateLeft(T val, U count) { T mask = sizeof(T) * CHAR_BIT - 1; count &= mask; return (val << count) | (val >> (-count & mask)); } -template <typename T, typename U> +template<typename T, typename U> inline static T RotateRight(T val, U count) { T mask = sizeof(T) * CHAR_BIT - 1; count &= mask; diff --git a/src/support/file.cpp b/src/support/file.cpp index 382b94e4d..19401b21d 100644 --- a/src/support/file.cpp +++ b/src/support/file.cpp @@ -21,7 +21,7 @@ #include <cstdint> #include <limits> -template <typename T> +template<typename T> T wasm::read_file(const std::string& filename, Flags::BinaryOption binary, Flags::DebugOption debug) { if (debug == Flags::Debug) std::cerr << "Loading '" << filename << "'..." << std::endl; std::ifstream infile; diff --git a/src/support/file.h b/src/support/file.h index 8355767ee..e94d23fad 100644 --- a/src/support/file.h +++ b/src/support/file.h @@ -39,7 +39,7 @@ namespace Flags { }; } -template <typename T> +template<typename T> T read_file(const std::string& filename, Flags::BinaryOption binary, Flags::DebugOption debug); // Declare the valid explicit specializations. extern template std::string read_file<>(const std::string& , Flags::BinaryOption, Flags::DebugOption); @@ -50,7 +50,7 @@ class Output { // An empty filename will open stdout instead. Output(const std::string& filename, Flags::BinaryOption binary, Flags::DebugOption debug); ~Output() = default; - template <typename T> + template<typename T> std::ostream &operator<<(const T &v) { return out << v; } diff --git a/src/support/name.h b/src/support/name.h index ae01db787..0a745b2f7 100644 --- a/src/support/name.h +++ b/src/support/name.h @@ -60,7 +60,7 @@ struct Name : public cashew::IString { namespace std { -template <> struct hash<wasm::Name> : hash<cashew::IString> {}; +template<> struct hash<wasm::Name> : hash<cashew::IString> {}; } // namespace std 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"); |