From c5c4ef2c09dee1c6e731d17bfa4cb239176577d0 Mon Sep 17 00:00:00 2001 From: S6066 Date: Wed, 12 Oct 2016 18:22:57 +0200 Subject: [PATCH] Fix + indent, again --- include/Nazara/Math/Vector3.inl | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/include/Nazara/Math/Vector3.inl b/include/Nazara/Math/Vector3.inl index 41bd20400..0a67aea74 100644 --- a/include/Nazara/Math/Vector3.inl +++ b/include/Nazara/Math/Vector3.inl @@ -1353,25 +1353,27 @@ namespace std template struct hash> { - /*! - * \brief Specialisation of std to hash - * \return Result of the hash - * - * \param v Vector3 to hash - */ + /*! + * \brief Specialisation of std to hash + * \return Result of the hash + * + * \param v Vector3 to hash + */ - std::size_t operator()(const Nz::Vector3& v) const - { - std::size_t seed {}; + std::size_t operator()(const Nz::Vector3& v) const + { + std::size_t seed {}; - Nz::HashCombine(seed, v.x); - Nz::HashCombine(seed, v.y); - Nz::HashCombine(seed, v.z); + Nz::HashCombine(seed, v.x); + Nz::HashCombine(seed, v.y); + Nz::HashCombine(seed, v.z); - return seed; - } + return seed; + } }; +} + #undef F #include