forked from electronicarts/CnC_Generals_Zero_Hour
-
Notifications
You must be signed in to change notification settings - Fork 145
refactor: Add override/final keywords to virtual functions with VC6 compatibility #2101
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
Open
bobtista
wants to merge
8
commits into
TheSuperHackers:main
Choose a base branch
from
bobtista:bobtista/clang-tidy-cppcoreguidelines-explicit-virtual-functions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Greptile OverviewGreptile SummaryApplied clang-tidy Key Changes:
Impact:
Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant CT as clang-tidy
participant CM as CppMacros.h
participant Compiler as C++ Compiler
participant VC6 as VC6 (C++98)
participant Modern as Modern C++ (C++11+)
Dev->>CT: Run cppcoreguidelines-explicit-virtual-functions
CT->>Dev: Identify virtual functions needing override keyword
Dev->>CM: Add OVERRIDE and FINAL macros
Note over CM: #if __cplusplus >= 201103L<br/>#define OVERRIDE override<br/>#else<br/>#define OVERRIDE<br/>#endif
Dev->>Dev: Replace "virtual" with "OVERRIDE" macro
Note over Dev: 43 files across Core, Generals, GeneralsMD
alt Modern C++11+ Build
Modern->>CM: Check __cplusplus >= 201103L
CM->>Modern: OVERRIDE expands to "override"
Modern->>Compiler: Compile with override keyword
Compiler->>Compiler: Verify virtual function override correctness
Compiler->>Dev: Build Success (with compile-time checks)
else Legacy VC6 Build
VC6->>CM: Check __cplusplus >= 201103L
CM->>VC6: OVERRIDE expands to empty
VC6->>Compiler: Compile without override keyword
Compiler->>Dev: Build Success (backward compatible)
end
|
9b2b41e to
20a3b96
Compare
…o avoid macro conflict
…avoid macro conflict
20a3b96 to
283d9e8
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Apply clang-tidy
cppcoreguidelines-explicit-virtual-functionsfixes to addoverridekeywords to virtual function overridesAdd
OVERRIDEandFINALmacros to CppMacros.h for VC6 compatibilityUse
OVERRIDEmacro instead of bareoverridekeyword in all affected filesNote had to rename a couple of things that conflicted with OVERRIDE and FINAL.