Cleanup: indentation of public/protected/private keywords

This commit is contained in:
Twan van Laarhoven
2020-05-12 21:57:37 +02:00
parent 86aec577a2
commit 0c3712b61a
167 changed files with 751 additions and 752 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ typedef Vector2D RealPoint;
/// A size (width,height) using real (double) coordinates
class RealSize {
public:
public:
double width;
double height;
@@ -125,7 +125,7 @@ inline RealSize piecewise_max(const RealSize& a, const RealSize& b) {
/// A rectangle (postion and size) using real (double) coordinats
class RealRect : private RealPoint, private RealSize {
public:
public:
using RealPoint::x;
using RealPoint::y;
using RealSize::width;