diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-11-04 04:48:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-04 04:48:20 -0500 |
commit | f626355b67fc007d5961c446d5a4ddbcc3785698 (patch) | |
tree | 0ed88da63b5fd96bf71a434ab12c655b9b2e5835 /support/hololens/ServoApp/ServoControl/ServoControl.cpp | |
parent | 84f13342f66c6b5ea8f2c33dad17de48fc4f8b18 (diff) | |
parent | 36c16692152b6bc66122c26fcd90e82469020a21 (diff) | |
download | servo-f626355b67fc007d5961c446d5a4ddbcc3785698.tar.gz servo-f626355b67fc007d5961c446d5a4ddbcc3785698.zip |
Auto merge of #24552 - paulrouget:clangformat, r=jdm
mach fmt calls clang-format
Fix #24031
What would be the right way to also integrate this with tidy?
Diffstat (limited to 'support/hololens/ServoApp/ServoControl/ServoControl.cpp')
-rw-r--r-- | support/hololens/ServoApp/ServoControl/ServoControl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/hololens/ServoApp/ServoControl/ServoControl.cpp b/support/hololens/ServoApp/ServoControl/ServoControl.cpp index 47e6ab7b5c0..9e7323ae8f2 100644 --- a/support/hololens/ServoApp/ServoControl/ServoControl.cpp +++ b/support/hololens/ServoApp/ServoControl/ServoControl.cpp @@ -238,8 +238,8 @@ void ServoControl::Loop() { if (mServo == nullptr) { log("Entering loop"); ServoDelegate *sd = static_cast<ServoDelegate *>(this); - mServo = std::make_unique<Servo>(mInitialURL, mArgs, panelWidth, panelHeight, mDPI, - *sd); + mServo = std::make_unique<Servo>(mInitialURL, mArgs, panelWidth, + panelHeight, mDPI, *sd); } else { // FIXME: this will fail since create_task didn't pick the thread // where Servo was running initially. |