PR-82: Fix indent
This commit is contained in:
parent
5ea3eab8fc
commit
5d5c7b4284
|
|
@ -122,10 +122,7 @@ template<typename T> Nz::Vector2<T> operator/(T scale, const Nz::Vector2<T>& vec
|
|||
|
||||
namespace std
|
||||
{
|
||||
|
||||
template<class T>
|
||||
struct hash<Nz::Vector2<T>>;
|
||||
|
||||
template<class T> struct hash<Nz::Vector2<T>>;
|
||||
}
|
||||
|
||||
#include <Nazara/Math/Vector2.inl>
|
||||
|
|
|
|||
|
|
@ -1059,7 +1059,6 @@ Nz::Vector2<T> operator/(T scale, const Nz::Vector2<T>& vec)
|
|||
|
||||
namespace std
|
||||
{
|
||||
|
||||
template<class T>
|
||||
struct hash<Nz::Vector2<T>>
|
||||
{
|
||||
|
|
@ -1069,7 +1068,6 @@ struct hash<Nz::Vector2<T>>
|
|||
*
|
||||
* \param v Vector2 to hash
|
||||
*/
|
||||
|
||||
std::size_t operator()(const Nz::Vector2<T>& v) const
|
||||
{
|
||||
std::size_t seed {};
|
||||
|
|
@ -1080,7 +1078,6 @@ struct hash<Nz::Vector2<T>>
|
|||
return seed;
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#undef F
|
||||
|
|
|
|||
|
|
@ -144,10 +144,7 @@ template<typename T> Nz::Vector3<T> operator/(T scale, const Nz::Vector3<T>& vec
|
|||
|
||||
namespace std
|
||||
{
|
||||
|
||||
template<class T>
|
||||
struct hash<Nz::Vector3<T>>;
|
||||
|
||||
template<class T> struct hash<Nz::Vector3<T>>;
|
||||
}
|
||||
|
||||
#include <Nazara/Math/Vector3.inl>
|
||||
|
|
|
|||
|
|
@ -1349,7 +1349,6 @@ Nz::Vector3<T> operator/(T scale, const Nz::Vector3<T>& vec)
|
|||
|
||||
namespace std
|
||||
{
|
||||
|
||||
template<class T>
|
||||
struct hash<Nz::Vector3<T>>
|
||||
{
|
||||
|
|
@ -1371,7 +1370,6 @@ struct hash<Nz::Vector3<T>>
|
|||
return seed;
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#undef F
|
||||
|
|
|
|||
|
|
@ -120,10 +120,7 @@ template<typename T> Nz::Vector4<T> operator/(T scale, const Nz::Vector4<T>& vec
|
|||
|
||||
namespace std
|
||||
{
|
||||
|
||||
template<class T>
|
||||
struct hash<Nz::Vector4<T>>;
|
||||
|
||||
template<class T> struct hash<Nz::Vector4<T>>;
|
||||
}
|
||||
|
||||
#include <Nazara/Math/Vector4.inl>
|
||||
|
|
|
|||
|
|
@ -1122,7 +1122,6 @@ Nz::Vector4<T> operator/(T scale, const Nz::Vector4<T>& vec)
|
|||
|
||||
namespace std
|
||||
{
|
||||
|
||||
template<class T>
|
||||
struct hash<Nz::Vector4<T>>
|
||||
{
|
||||
|
|
@ -1132,7 +1131,6 @@ struct hash<Nz::Vector4<T>>
|
|||
*
|
||||
* \param v Vector4 to hash
|
||||
*/
|
||||
|
||||
std::size_t operator()(const Nz::Vector4<T>& v) const
|
||||
{
|
||||
std::size_t seed {};
|
||||
|
|
@ -1145,7 +1143,6 @@ struct hash<Nz::Vector4<T>>
|
|||
return seed;
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#undef F
|
||||
|
|
|
|||
Loading…
Reference in New Issue