Skip to content

Commit 8a902a5

Browse files
authored
cleanup(generator): new line in auth cc (#7543)
1 parent d4398c0 commit 8a902a5

5 files changed

Lines changed: 5 additions & 1 deletion

File tree

generator/internal/auth_decorator_generator.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,10 @@ future<Status> $auth_class_name$::AsyncCancelOperation(
241241
return child->AsyncCancelOperation(cq, *std::move(context), request);
242242
});
243243
}
244-
245244
)""");
246245
}
247246

247+
CcPrint("\n");
248248
CcCloseNamespaces();
249249
return {};
250250
}

google/cloud/bigquery/internal/bigquery_read_auth_decorator.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ BigQueryReadAuth::SplitReadStream(
6161
if (!status.ok()) return status;
6262
return child_->SplitReadStream(context, request);
6363
}
64+
6465
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
6566
} // namespace bigquery_internal
6667
} // namespace cloud

google/cloud/iam/internal/iam_auth_decorator.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ StatusOr<google::iam::admin::v1::LintPolicyResponse> IAMAuth::LintPolicy(
247247
if (!status.ok()) return status;
248248
return child_->LintPolicy(context, request);
249249
}
250+
250251
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
251252
} // namespace iam_internal
252253
} // namespace cloud

google/cloud/iam/internal/iam_credentials_auth_decorator.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ IAMCredentialsAuth::SignJwt(
6565
if (!status.ok()) return status;
6666
return child_->SignJwt(context, request);
6767
}
68+
6869
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
6970
} // namespace iam_internal
7071
} // namespace cloud

google/cloud/logging/internal/logging_service_v2_auth_decorator.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ StatusOr<google::logging::v2::ListLogsResponse> LoggingServiceV2Auth::ListLogs(
7373
if (!status.ok()) return status;
7474
return child_->ListLogs(context, request);
7575
}
76+
7677
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
7778
} // namespace logging_internal
7879
} // namespace cloud

0 commit comments

Comments
 (0)