1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +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 84d77524a8
commit 34270d6529
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: