@@ -79,12 +79,6 @@ class CADTElemClass : public CADTBaseClass {
7979 * \param[in] globalTree Whether or not a global tree must be built. If false
8080 a local ADT is built.
8181 */
82-
83- /* !
84- * \brief Default constructor of the class, disabled.
85- */
86- CADTElemClass () = default ;
87-
8882 CADTElemClass (unsigned short val_nDim,
8983 vector<su2double> &val_coor,
9084 vector<unsigned long > &val_connElem,
@@ -93,14 +87,6 @@ class CADTElemClass : public CADTBaseClass {
9387 vector<unsigned long > &val_elemID,
9488 const bool globalTree);
9589
96- void CreateADT (unsigned short val_nDim,
97- vector<su2double> &val_coor,
98- vector<unsigned long > &val_connElem,
99- vector<unsigned short > &val_VTKElem,
100- vector<unsigned short > &val_markerID,
101- vector<unsigned long > &val_elemID,
102- const bool globalTree);
103-
10490 /* !
10591 * \brief Function, which determines the element that contains the given coordinate.
10692 * \note This simply forwards the call to the implementation function selecting the right
@@ -146,6 +132,7 @@ class CADTElemClass : public CADTBaseClass {
146132 FrontLeavesNew[iThread], coor, dist, markerID, elemID, rankID);
147133 }
148134
135+ private:
149136 /* !
150137 * \brief Implementation of DetermineContainingElement.
151138 * \note Working variables (first two) passed explicitly for thread safety.
@@ -172,9 +159,6 @@ class CADTElemClass : public CADTBaseClass {
172159 unsigned long &elemID,
173160 int &rankID) const ;
174161
175- private:
176-
177-
178162 /* !
179163 * \brief Function, which checks whether or not the given coordinate is
180164 inside the given element.
@@ -411,6 +395,9 @@ class CADTElemClass : public CADTBaseClass {
411395 su2double &dist2Tria,
412396 su2double &r,
413397 su2double &s) const ;
398+ /* !
399+ * \brief Default constructor of the class, disabled.
400+ */
401+ CADTElemClass () = delete ;
414402
415-
416- };
403+ };
0 commit comments