-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
chore: Rename two files from Directory* to Dir*: #5058
Conversation
The names of the files should reflect the name of the Dir class.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #5058 +/- ##
=========================================
- Coverage 71.4% 71.4% -0.0%
=========================================
Files 796 796
Lines 67031 67031
Branches 10865 10866 +1
=========================================
- Hits 47833 47828 -5
- Misses 19198 19203 +5
|
I requested @thejohnfreeman as a reviewer to make sure that I did not break some aspect of the build when I renamed the two files. John has directly confirmed to me that renaming those files should have no impact on the CMake stuff as it is currently structured. So I think that takes John off the hook as a reviewer. Thanks John! |
@scottschurr This PR now has two approvals. If you think it's ready to merge, please add the "Passed" label, or write a comment to that effect. |
The names of the files should reflect the name of the Dir class. Co-authored-by: Zack Brunson <[email protected]> Co-authored-by: Ed Hennis <[email protected]>
High Level Overview of Change
The
Dir
class was contained in two files namedDirectory.h
andDirectory.cpp
. The files are renamedDir.h
andDir.cpp
to reflect the class that they contain. Additionally:Directory.h
have been removed andDir
class has been added.Type of Change