diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index dfe0770..0000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto diff --git a/myHelpers.h b/myHelpers.h index 777cf98..9635d15 100644 --- a/myHelpers.h +++ b/myHelpers.h @@ -78,17 +78,4 @@ void sortVectorsAscending(const std::vector &t, std::vector &... ss) { template int sgn(T val) { return (T(0) < val) - (val < T(0)); } -template class Vector2D : public std::vector { -protected: - unsigned _width; - -public: - unsigned width() { return _width; } - void setWidth(unsigned i) { width = i; } - - T &operator()(int x, int y) { return this->operator[](x + _width * y); } - - Vector2D(unsigned newWidth) : std::vector(), _width(newWidth) {} -}; - #endif