1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00

0032430: Coding Rules - eliminate CLang warning -Wdeprecated-copy

Introduced Standard_DELETE alias to C++11 feature "=delete".
This commit is contained in:
kgv 2021-06-11 14:52:37 +03:00 committed by bugmaster
parent 42633ff642
commit 1790e9f28c
6 changed files with 22 additions and 10 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -37,6 +37,18 @@
#define Standard_OVERRIDE
#endif
//! @def Standard_DELETE
//! Alias for C++11 keyword "=delete" marking methods to be deleted.
#if defined(__cplusplus) && (__cplusplus >= 201100L)
// part of C++11 standard
#define Standard_DELETE =delete
#elif defined(_MSC_VER) && (_MSC_VER >= 1800)
// implemented since VS2013
#define Standard_DELETE =delete
#else
#define Standard_DELETE
#endif
//! @def Standard_FALLTHROUGH
//! Should be used in a switch statement immediately before a case label,
//! if code associated with the previous case label may fall through to that