Skip to content

Commit ff7a714

Browse files
committed
fix EOF to be in the next line
1 parent 521340e commit ff7a714

24 files changed

Lines changed: 24 additions & 24 deletions

Common/include/adt/CADTBaseClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ class CADTBaseClass {
8989
*/
9090
inline bool IsEmpty(void) const { return isEmpty;}
9191

92-
};
92+
};

Common/include/adt/CADTComparePointClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ class CADTComparePointClass {
6565
*/
6666
CADTComparePointClass() = delete;
6767

68-
};
68+
};

Common/include/adt/CADTElemClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,4 +399,4 @@ class CADTElemClass : public CADTBaseClass {
399399
*/
400400
CADTElemClass() = delete;
401401

402-
};
402+
};

Common/include/adt/CADTNodeClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ struct CADTNodeClass {
4545
vector, which contains the coordinates of all leaves. */
4646
su2double *xMax; /*!< \brief The maximum coordinates of this leaf. It points to a position in the large
4747
vector, which contains the coordinates of all leaves. */
48-
};
48+
};

Common/include/adt/CADTPointsOnlyClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ class CADTPointsOnlyClass : public CADTBaseClass {
9191
su2double &dist,
9292
unsigned long &pointID,
9393
int &rankID) const;
94-
};
94+
};

Common/include/adt/CBBoxTargetClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ struct CBBoxTargetClass {
8080
return false;
8181
}
8282

83-
};
83+
};

Common/include/grid_movement/CBSplineBlending.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ class CBSplineBlending : public CFreeFormBlending{
7979
*/
8080
void SetOrder(short val_order, short n_controlpoints) override;
8181

82-
};
82+
};

Common/include/grid_movement/CBezierBlending.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ class CBezierBlending : public CFreeFormBlending{
106106
*/
107107
void SetOrder(short val_order, short n_controlpoints) override;
108108

109-
};
109+
};

Common/include/grid_movement/CFreeFormBlending.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ class CFreeFormBlending {
8686
* \brief Returns the current degree of the function.
8787
*/
8888
inline su2double GetDegree() const{return Degree;}
89-
};
89+
};

Common/include/grid_movement/CFreeFormDefBox.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,4 +765,4 @@ class CFreeFormDefBox : public CGridMovement {
765765
return A00*(A11*A22-A12*A21) - A01*(A10*A22-A12*A20) + A02*(A10*A21-A11*A20);
766766
}
767767

768-
};
768+
};

0 commit comments

Comments
 (0)