@@ -90,7 +90,7 @@ CFaceOfElement::CFaceOfElement(const unsigned short VTK_Type, const unsigned sho
9090 }
9191
9292 default : {
93- ostringstream message;
93+ std:: ostringstream message;
9494 message << " Unknown VTK surface element type, " << VTK_Type;
9595 SU2_MPI::Error (message.str (), CURRENT_FUNCTION);
9696 }
@@ -151,7 +151,7 @@ void CFaceOfElement::CreateUniqueNumberingWithOrientation() {
151151 also the element information must be swapped, because element 0 is to
152152 the left of the face and element 1 to the right. */
153153 if (cornerPoints[1 ] < cornerPoints[0 ]) {
154- swap (cornerPoints[0 ], cornerPoints[1 ]);
154+ std:: swap (cornerPoints[0 ], cornerPoints[1 ]);
155155 swapElements = true ;
156156 }
157157 break ;
@@ -225,19 +225,19 @@ void CFaceOfElement::CreateUniqueNumberingWithOrientation() {
225225 }
226226
227227 default : {
228- ostringstream message;
229- message << " Unknown surface element type with " << nCornerPoints << " corners." << endl;
228+ std:: ostringstream message;
229+ message << " Unknown surface element type with " << nCornerPoints << " corners." << std:: endl;
230230 SU2_MPI::Error (message.str (), CURRENT_FUNCTION);
231231 }
232232 }
233233
234234 /* Swap the element information, if needed. */
235235 if (swapElements) {
236- swap (elemID0, elemID1);
237- swap (nPolyGrid0, nPolyGrid1);
238- swap (nPolySol0, nPolySol1);
239- swap (nDOFsElem0, nDOFsElem1);
240- swap (elemType0, elemType1);
241- swap (faceID0, faceID1);
236+ std:: swap (elemID0, elemID1);
237+ std:: swap (nPolyGrid0, nPolyGrid1);
238+ std:: swap (nPolySol0, nPolySol1);
239+ std:: swap (nDOFsElem0, nDOFsElem1);
240+ std:: swap (elemType0, elemType1);
241+ std:: swap (faceID0, faceID1);
242242 }
243243}
0 commit comments