massive cleaning of file section headers
[physics.git] / src / Vector2.h
index d2bc2a0..2d1e85b 100644 (file)
@@ -15,6 +15,7 @@ class Vector2
     Vector2();
     Vector2(float, float);
     Vector2(const Vector2&);
+    ~Vector2();
 
     void zero();
     void unit();
@@ -32,8 +33,10 @@ class Vector2
 };
 
 /// ***** Header Methods *****
-// definitions of the operators are external
-// because (float, Vector2) would fail inside class
+
+// definitions of the operators are external because (float, Vector2) would
+// fail inside the class
+
 Vector2 operator+(const Vector2&, const Vector2&);
 Vector2 operator-(const Vector2&, const Vector2&);
 Vector2 operator*(float, const Vector2&);