Commit 23c607b7 authored by Jun Cai's avatar Jun Cai Committed by Commit Bot

Remove unnecessary comment characters in orientation_util.cc

This CL removes unnecessary comment characters in
//services/device/generic_sensor/orientation_util.cc

Bug: None
Change-Id: I7354767c0a982bdad19522363a2a58be9dee4ca8
Reviewed-on: https://chromium-review.googlesource.com/957805Reviewed-by: default avatarReilly Grant <reillyg@chromium.org>
Commit-Queue: Jun Cai <juncai@chromium.org>
Cr-Commit-Position: refs/heads/master@{#542309}
parent ee2daef5
......@@ -52,7 +52,7 @@ void ComputeOrientationEulerAnglesInRadiansFromRotationMatrix(
// Since |r| contains double, directly compare it with 0 won't be accurate,
// so here |device::kEpsilon| is used to check if r[8] and r[6] is close to
// 0. And // this needs to be done before checking if it is greater or less
// 0. And this needs to be done before checking if it is greater or less
// than 0 since a number close to 0 can be either a positive or negative
// number.
if (std::abs(r[8]) < device::kEpsilon) { // r[8] == 0
......
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