From a0c3fcea89b214bbb0428af2684f608c28ad7db3 Mon Sep 17 00:00:00 2001 From: Kalman Date: Wed, 8 Aug 2018 11:39:03 +0800 Subject: [PATCH] delete ',' in samples/device/camera.cc --- samples/device/camera.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/device/camera.cc b/samples/device/camera.cc index 16a99bf..19f03d4 100644 --- a/samples/device/camera.cc +++ b/samples/device/camera.cc @@ -57,7 +57,7 @@ int main(int argc, char *argv[]) { Stream::LEFT, [&left_count](const device::StreamData &data) { CHECK_NOTNULL(data.img); ++left_count; - VLOG(2) << Stream::LEFT << ", count: " << left_count; + VLOG(2) << Stream::LEFT << "count: " << left_count; VLOG(2) << " frame_id: " << data.img->frame_id << ", timestamp: " << data.img->timestamp << ", exposure_time: " << data.img->exposure_time; @@ -67,7 +67,7 @@ int main(int argc, char *argv[]) { Stream::RIGHT, [&right_count](const device::StreamData &data) { CHECK_NOTNULL(data.img); ++right_count; - VLOG(2) << Stream::RIGHT << ", count: " << right_count; + VLOG(2) << Stream::RIGHT << "count: " << right_count; VLOG(2) << " frame_id: " << data.img->frame_id << ", timestamp: " << data.img->timestamp << ", exposure_time: " << data.img->exposure_time; @@ -105,7 +105,7 @@ int main(int argc, char *argv[]) { auto &&motion_datas = device->GetMotionDatas(); motion_count += motion_datas.size(); for (auto &&data : motion_datas) { - LOG(INFO) << ", timestamp: " << data.imu->timestamp + LOG(INFO) << "timestamp: " << data.imu->timestamp << ", accel_x: " << data.imu->accel[0] << ", accel_y: " << data.imu->accel[1] << ", accel_z: " << data.imu->accel[2]