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

0033748: OCCT:Coding - Changing function signature to a more common one

Changing function virtual specifier and return type order to a more common to avoid wrapping issues.
This commit is contained in:
anv 2024-06-26 12:52:43 +01:00 committed by Pasukhin Dmitry
parent dc997b884b
commit 100d03d273

View File

@ -147,7 +147,7 @@ public:
//!
//! The main goal - real-time loading plug-in activation.
//! OpenSource components don't need to have activation process.
Standard_EXPORT void virtual CustomActivation(const TColStd_ListOfAsciiString&) {};
Standard_EXPORT virtual void CustomActivation(const TColStd_ListOfAsciiString&) {};
public: