-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[all] Cleanup unformatted files #7267
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
Changes from all commits
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ CaptureControllerImpl::CaptureControllerImpl( | |
: capture_controller_listener_(listener), | ||
media_settings_( | ||
PlatformMediaSettings(PlatformResolutionPreset::kMax, true)), | ||
CaptureController(){}; | ||
CaptureController() {}; | ||
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. All of the rest of these are minor differences in how clang-format handles this code, but the easy solution to these is to fix them all to not have the stray 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. I removed the 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. Yes, the space is correct. |
||
|
||
CaptureControllerImpl::~CaptureControllerImpl() { | ||
ResetCaptureController(); | ||
|
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.
This probably depends on the exact version of clang-format, due to changes in the logic for detecting whether a file is C++ or Obj-C.
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.
I think I'm using the latest clang-format version. What version is CI using? Or has this file just not been touched in a really long time?