fxing CPPLINT config file and more norm

This commit is contained in:
Clément Le Bihan
2021-05-23 17:34:13 +02:00
parent 2a12e06f50
commit aee937f9ae
12 changed files with 21 additions and 14 deletions

View File

@@ -157,11 +157,11 @@ namespace WAL
typedef Vector3<float> Vector3f;
typedef Vector3<unsigned> Vector3u;
typedef Vector3<int> Vector3i;
}
} // namespace WAL
template<typename T>
std::ostream &operator<<(std::ostream &s, const WAL::Vector3<T> &v)
{
s << "Vector3<" << typeid(T).name() << ">("<< v.x << ", " << v.y << ", " << v.z << ")";
return s;
} // namespace WAL
}