Skip to content

Commit c897a5a

Browse files
committed
style fix
1 parent 0c583fb commit c897a5a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

cpp/open3d/pipelines/registration/Registration.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,8 @@ RegistrationResult RegistrationRANSACBasedOnCorrespondence(
369369
auto best_result = std::move(reducer.best_result);
370370
utility::LogDebug(
371371
"RANSAC exits after {:d} validations. Best inlier ratio {:e}, "
372-
"RMSE {:e}", total_validation.load(), best_result.fitness_,
372+
"RMSE {:e}",
373+
total_validation.load(), best_result.fitness_,
373374
best_result.inlier_rmse_);
374375
return best_result;
375376
}

cpp/open3d/utility/Logging.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class Logger {
140140
int line,
141141
const char *function,
142142
const char *format,
143-
Args &&...args) {
143+
Args &&... args) {
144144
if (sizeof...(Args) > 0) {
145145
Logger::GetInstance().VError(
146146
file, line, function,
@@ -155,7 +155,7 @@ class Logger {
155155
int line,
156156
const char *function,
157157
const char *format,
158-
Args &&...args) {
158+
Args &&... args) {
159159
if (Logger::GetInstance().GetVerbosityLevel() >=
160160
VerbosityLevel::Warning) {
161161
if (sizeof...(Args) > 0) {
@@ -173,7 +173,7 @@ class Logger {
173173
int line,
174174
const char *function,
175175
const char *format,
176-
Args &&...args) {
176+
Args &&... args) {
177177
if (Logger::GetInstance().GetVerbosityLevel() >= VerbosityLevel::Info) {
178178
if (sizeof...(Args) > 0) {
179179
Logger::GetInstance().VInfo(
@@ -190,7 +190,7 @@ class Logger {
190190
int line,
191191
const char *function,
192192
const char *format,
193-
Args &&...args) {
193+
Args &&... args) {
194194
if (Logger::GetInstance().GetVerbosityLevel() >=
195195
VerbosityLevel::Debug) {
196196
if (sizeof...(Args) > 0) {

0 commit comments

Comments
 (0)