Commit 9d5a8e91 authored by Robert Liao's avatar Robert Liao Committed by Commit Bot

Suppress "Extra space after ( in function call" for RotateClockwise

This is due to the use of negative numbers in the line below and
seems reasonable.

BUG=940744
TBR=sky@chromium.org

Change-Id: I5587681e6c30ebe09fa1f000062f1b9cc73e4dfe
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1619925
Commit-Queue: Robert Liao <robliao@chromium.org>
Reviewed-by: default avatarRobert Liao <robliao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#661392}
parent 6c74ee0c
......@@ -1325,7 +1325,7 @@ void RotateCounterclockwise(gfx::Transform* transform) {
}
void RotateClockwise(gfx::Transform* transform) {
transform->matrix().set3x3( 0, 1, 0,
transform->matrix().set3x3( 0, 1, 0, // NOLINT
-1, 0, 0,
0, 0, 1);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment