mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-03 14:10:33 +03:00
0032430: Coding Rules - eliminate CLang warning -Wdeprecated-copy
Introduced Standard_DELETE alias to C++11 feature "=delete".
This commit is contained in:
@@ -143,8 +143,8 @@ protected:
|
||||
private:
|
||||
|
||||
// disallow copies
|
||||
Extrema_ExtCC (Extrema_ExtCC& );
|
||||
Extrema_ExtCC& operator= (Extrema_ExtCC& );
|
||||
Extrema_ExtCC (Extrema_ExtCC& ) Standard_DELETE;
|
||||
Extrema_ExtCC& operator= (Extrema_ExtCC& ) Standard_DELETE;
|
||||
|
||||
private:
|
||||
|
||||
|
@@ -87,8 +87,8 @@ private:
|
||||
private:
|
||||
|
||||
// disallow copies
|
||||
Extrema_ExtCS (Extrema_ExtCS& );
|
||||
Extrema_ExtCS& operator= (Extrema_ExtCS& );
|
||||
Extrema_ExtCS (Extrema_ExtCS& ) Standard_DELETE;
|
||||
Extrema_ExtCS& operator= (Extrema_ExtCS& ) Standard_DELETE;
|
||||
|
||||
private:
|
||||
|
||||
|
@@ -108,8 +108,8 @@ private:
|
||||
private:
|
||||
|
||||
// disallow copies
|
||||
Extrema_GenExtCS (const Extrema_GenExtCS& );
|
||||
Extrema_GenExtCS& operator= (const Extrema_GenExtCS& );
|
||||
Extrema_GenExtCS (const Extrema_GenExtCS& ) Standard_DELETE;
|
||||
Extrema_GenExtCS& operator= (const Extrema_GenExtCS& ) Standard_DELETE;
|
||||
|
||||
private:
|
||||
|
||||
|
@@ -110,8 +110,8 @@ private:
|
||||
private:
|
||||
|
||||
// disallow copies
|
||||
Extrema_GenExtPS (const Extrema_GenExtPS& );
|
||||
Extrema_GenExtPS& operator= (const Extrema_GenExtPS& );
|
||||
Extrema_GenExtPS (const Extrema_GenExtPS& ) Standard_DELETE;
|
||||
Extrema_GenExtPS& operator= (const Extrema_GenExtPS& ) Standard_DELETE;
|
||||
|
||||
private:
|
||||
|
||||
|
@@ -89,8 +89,8 @@ public:
|
||||
private:
|
||||
|
||||
// disallow copies
|
||||
Extrema_GenExtSS (const Extrema_GenExtSS& );
|
||||
Extrema_GenExtSS& operator= (const Extrema_GenExtSS& );
|
||||
Extrema_GenExtSS (const Extrema_GenExtSS& ) Standard_DELETE;
|
||||
Extrema_GenExtSS& operator= (const Extrema_GenExtSS& ) Standard_DELETE;
|
||||
|
||||
private:
|
||||
|
||||
|
Reference in New Issue
Block a user