-
Notifications
You must be signed in to change notification settings - Fork 257
Refactor TracePath to return a struct with relevant data #935
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
base: master
Are you sure you want to change the base?
Changes from all commits
acf8c35
29acee5
0422fed
156d03a
8e8e19e
b9b5dd0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -255,4 +255,4 @@ int main(int argc, char *argv[]) | |
| std::cerr << "Error: " << e.what() << std::endl; | ||
| return 1; | ||
| } | ||
| } | ||
| } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is another whitespace change, but it involves removing the blank line at the end of the file. By convention files should end with a blank line. This should be caught by having the |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we try to avoid isolated whitespace changes unless they're tied to some adjacent changes, just to keep from having spurious diffs.