You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we skip those keywords then the build take a lot of time to build the project as this 1 line function has 1k+ warning that our compiler must go through it.
Note : If I just marked it as virtual and override then the build time reduce ~30 mint.
The text was updated successfully, but these errors were encountered:
MHassamChaudhary
changed the title
Missing "Override" keyword in FUIContainer.h file
Missing "Virtual" and "Override" keyword in FUIContainer.h file
Jun 28, 2022
The current code which is written is
**void setGlobalZOrder(float globalZOrder);**
but it is the virtual function that have to be marked with "Override" keyword. So it should be
**virtual void setGlobalZOrder(float globalZOrder) override;**
Issue that I faced:
Note : If I just marked it as virtual and override then the build time reduce ~30 mint.
The text was updated successfully, but these errors were encountered: