Auto merge of #24640 - paulrouget:no-allfiles-opt, r=jdm

Remove all_files options for clang-format check

fix #24638
This commit is contained in:
bors-servo 2019-11-05 07:42:29 -05:00 committed by GitHub
commit 593f8bd0f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 9 deletions

View file

@ -62,9 +62,7 @@ public:
void MouseUp(float x, float y, capi::CMouseButton b) {
capi::mouse_up(x, y, b);
}
void MouseMove(float x, float y) {
capi::mouse_move(x, y);
}
void MouseMove(float x, float y) { capi::mouse_move(x, y); }
void Reload() { capi::reload(); }
void Stop() { capi::stop(); }

View file

@ -149,7 +149,7 @@ void ServoControl::OnSurfacePointerPressed(
void ServoControl::OnSurfacePointerCanceled(
IInspectable const &, Input::PointerRoutedEventArgs const &e) {
mPressedMouseButton = {};
mPressedMouseButton = {};
}
void ServoControl::OnSurfacePointerMoved(