- updated line endings to unix style characters to fix Bug #3085838

This commit is contained in:
Mark Vejvoda
2011-01-20 15:56:30 +00:00
parent 53327900b3
commit 66261ad662
105 changed files with 26229 additions and 20874 deletions

View File

@@ -139,8 +139,8 @@ public:
}
// strict week ordering, so Vec2<T> can be used as key for set<> or map<>
bool operator<(const Vec2<T> &v) const {
return x < v.x || (x == v.x && y < v.y);
bool operator<(const Vec2<T> &v) const {
return x < v.x || (x == v.x && y < v.y);
}
float length() const{