-
Notifications
You must be signed in to change notification settings - Fork 938
Solve MSVC build warnings #510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Hi, thanks for this fix. Do you know where the conflict |
Looks like we're adding it in explicitly here: Line 174 in b332a64
Might be better to remove it here instead. |
Thanks for the suggestion! It really does seem like a better option for solving the warnings. Regarding removing the warnings, could you explain why solving all the override and casting warnings that were mentioned wouldn't be a good idea? |
I may have left that a bit unclear. isn't just turning off/silencing all warnings. Looking at the code a bit closer now, I see that your regex deleting the To close the loop on where this conflict even came from, the Cmake docs seem to indicate that |
Great! Thanks for the help and the clarification @Llcoolsouder! |
Type of change
Description
When compiling the project using MSVC in Qt Creator, the following warnings are displayed:
This PR aims to solve these warnings.
Testing