Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(generator): correct doxygen comments #10500

Merged
merged 3 commits into from
Jan 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -66,15 +66,15 @@ class GoldenKitchenSinkClient {
~GoldenKitchenSinkClient();

///@{
// @name Copy and move support
/// @name Copy and move support
GoldenKitchenSinkClient(GoldenKitchenSinkClient const&) = default;
GoldenKitchenSinkClient& operator=(GoldenKitchenSinkClient const&) = default;
GoldenKitchenSinkClient(GoldenKitchenSinkClient&&) = default;
GoldenKitchenSinkClient& operator=(GoldenKitchenSinkClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(GoldenKitchenSinkClient const& a, GoldenKitchenSinkClient const& b) {
return a.connection_ == b.connection_;
}
Original file line number Diff line number Diff line change
@@ -71,15 +71,15 @@ class GoldenThingAdminClient {
~GoldenThingAdminClient();

///@{
// @name Copy and move support
/// @name Copy and move support
GoldenThingAdminClient(GoldenThingAdminClient const&) = default;
GoldenThingAdminClient& operator=(GoldenThingAdminClient const&) = default;
GoldenThingAdminClient(GoldenThingAdminClient&&) = default;
GoldenThingAdminClient& operator=(GoldenThingAdminClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(GoldenThingAdminClient const& a, GoldenThingAdminClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions generator/internal/client_generator.cc
Original file line number Diff line number Diff line change
@@ -101,15 +101,15 @@ class $client_class_name$ {
~$client_class_name$();

///@{
// @name Copy and move support
/// @name Copy and move support
$client_class_name$($client_class_name$ const&) = default;
$client_class_name$& operator=($client_class_name$ const&) = default;
$client_class_name$($client_class_name$&&) = default;
$client_class_name$& operator=($client_class_name$&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==($client_class_name$ const& a, $client_class_name$ const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/accessapproval/v1/access_approval_client.h
Original file line number Diff line number Diff line change
@@ -97,15 +97,15 @@ class AccessApprovalClient {
~AccessApprovalClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AccessApprovalClient(AccessApprovalClient const&) = default;
AccessApprovalClient& operator=(AccessApprovalClient const&) = default;
AccessApprovalClient(AccessApprovalClient&&) = default;
AccessApprovalClient& operator=(AccessApprovalClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AccessApprovalClient const& a,
AccessApprovalClient const& b) {
return a.connection_ == b.connection_;
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ class AccessContextManagerClient {
~AccessContextManagerClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AccessContextManagerClient(AccessContextManagerClient const&) = default;
AccessContextManagerClient& operator=(AccessContextManagerClient const&) =
default;
@@ -86,7 +86,7 @@ class AccessContextManagerClient {
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AccessContextManagerClient const& a,
AccessContextManagerClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/apigateway/api_gateway_client.h
Original file line number Diff line number Diff line change
@@ -68,15 +68,15 @@ class ApiGatewayServiceClient {
~ApiGatewayServiceClient();

///@{
// @name Copy and move support
/// @name Copy and move support
ApiGatewayServiceClient(ApiGatewayServiceClient const&) = default;
ApiGatewayServiceClient& operator=(ApiGatewayServiceClient const&) = default;
ApiGatewayServiceClient(ApiGatewayServiceClient&&) = default;
ApiGatewayServiceClient& operator=(ApiGatewayServiceClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(ApiGatewayServiceClient const& a,
ApiGatewayServiceClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/apigeeconnect/connection_client.h
Original file line number Diff line number Diff line change
@@ -66,15 +66,15 @@ class ConnectionServiceClient {
~ConnectionServiceClient();

///@{
// @name Copy and move support
/// @name Copy and move support
ConnectionServiceClient(ConnectionServiceClient const&) = default;
ConnectionServiceClient& operator=(ConnectionServiceClient const&) = default;
ConnectionServiceClient(ConnectionServiceClient&&) = default;
ConnectionServiceClient& operator=(ConnectionServiceClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(ConnectionServiceClient const& a,
ConnectionServiceClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/apikeys/api_keys_client.h
Original file line number Diff line number Diff line change
@@ -67,15 +67,15 @@ class ApiKeysClient {
~ApiKeysClient();

///@{
// @name Copy and move support
/// @name Copy and move support
ApiKeysClient(ApiKeysClient const&) = default;
ApiKeysClient& operator=(ApiKeysClient const&) = default;
ApiKeysClient(ApiKeysClient&&) = default;
ApiKeysClient& operator=(ApiKeysClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(ApiKeysClient const& a, ApiKeysClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/appengine/applications_client.h
Original file line number Diff line number Diff line change
@@ -66,15 +66,15 @@ class ApplicationsClient {
~ApplicationsClient();

///@{
// @name Copy and move support
/// @name Copy and move support
ApplicationsClient(ApplicationsClient const&) = default;
ApplicationsClient& operator=(ApplicationsClient const&) = default;
ApplicationsClient(ApplicationsClient&&) = default;
ApplicationsClient& operator=(ApplicationsClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(ApplicationsClient const& a,
ApplicationsClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/appengine/authorized_certificates_client.h
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ class AuthorizedCertificatesClient {
~AuthorizedCertificatesClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AuthorizedCertificatesClient(AuthorizedCertificatesClient const&) = default;
AuthorizedCertificatesClient& operator=(AuthorizedCertificatesClient const&) =
default;
@@ -77,7 +77,7 @@ class AuthorizedCertificatesClient {
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AuthorizedCertificatesClient const& a,
AuthorizedCertificatesClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/appengine/authorized_domains_client.h
Original file line number Diff line number Diff line change
@@ -68,15 +68,15 @@ class AuthorizedDomainsClient {
~AuthorizedDomainsClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AuthorizedDomainsClient(AuthorizedDomainsClient const&) = default;
AuthorizedDomainsClient& operator=(AuthorizedDomainsClient const&) = default;
AuthorizedDomainsClient(AuthorizedDomainsClient&&) = default;
AuthorizedDomainsClient& operator=(AuthorizedDomainsClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AuthorizedDomainsClient const& a,
AuthorizedDomainsClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/appengine/domain_mappings_client.h
Original file line number Diff line number Diff line change
@@ -66,15 +66,15 @@ class DomainMappingsClient {
~DomainMappingsClient();

///@{
// @name Copy and move support
/// @name Copy and move support
DomainMappingsClient(DomainMappingsClient const&) = default;
DomainMappingsClient& operator=(DomainMappingsClient const&) = default;
DomainMappingsClient(DomainMappingsClient&&) = default;
DomainMappingsClient& operator=(DomainMappingsClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(DomainMappingsClient const& a,
DomainMappingsClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/appengine/firewall_client.h
Original file line number Diff line number Diff line change
@@ -74,15 +74,15 @@ class FirewallClient {
~FirewallClient();

///@{
// @name Copy and move support
/// @name Copy and move support
FirewallClient(FirewallClient const&) = default;
FirewallClient& operator=(FirewallClient const&) = default;
FirewallClient(FirewallClient&&) = default;
FirewallClient& operator=(FirewallClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(FirewallClient const& a, FirewallClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/appengine/instances_client.h
Original file line number Diff line number Diff line change
@@ -66,15 +66,15 @@ class InstancesClient {
~InstancesClient();

///@{
// @name Copy and move support
/// @name Copy and move support
InstancesClient(InstancesClient const&) = default;
InstancesClient& operator=(InstancesClient const&) = default;
InstancesClient(InstancesClient&&) = default;
InstancesClient& operator=(InstancesClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(InstancesClient const& a, InstancesClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/appengine/services_client.h
Original file line number Diff line number Diff line change
@@ -67,15 +67,15 @@ class ServicesClient {
~ServicesClient();

///@{
// @name Copy and move support
/// @name Copy and move support
ServicesClient(ServicesClient const&) = default;
ServicesClient& operator=(ServicesClient const&) = default;
ServicesClient(ServicesClient&&) = default;
ServicesClient& operator=(ServicesClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(ServicesClient const& a, ServicesClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/appengine/versions_client.h
Original file line number Diff line number Diff line change
@@ -67,15 +67,15 @@ class VersionsClient {
~VersionsClient();

///@{
// @name Copy and move support
/// @name Copy and move support
VersionsClient(VersionsClient const&) = default;
VersionsClient& operator=(VersionsClient const&) = default;
VersionsClient(VersionsClient&&) = default;
VersionsClient& operator=(VersionsClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(VersionsClient const& a, VersionsClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/artifactregistry/artifact_registry_client.h
Original file line number Diff line number Diff line change
@@ -80,15 +80,15 @@ class ArtifactRegistryClient {
~ArtifactRegistryClient();

///@{
// @name Copy and move support
/// @name Copy and move support
ArtifactRegistryClient(ArtifactRegistryClient const&) = default;
ArtifactRegistryClient& operator=(ArtifactRegistryClient const&) = default;
ArtifactRegistryClient(ArtifactRegistryClient&&) = default;
ArtifactRegistryClient& operator=(ArtifactRegistryClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(ArtifactRegistryClient const& a,
ArtifactRegistryClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/asset/asset_client.h
Original file line number Diff line number Diff line change
@@ -67,15 +67,15 @@ class AssetServiceClient {
~AssetServiceClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AssetServiceClient(AssetServiceClient const&) = default;
AssetServiceClient& operator=(AssetServiceClient const&) = default;
AssetServiceClient(AssetServiceClient&&) = default;
AssetServiceClient& operator=(AssetServiceClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AssetServiceClient const& a,
AssetServiceClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/assuredworkloads/assured_workloads_client.h
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ class AssuredWorkloadsServiceClient {
~AssuredWorkloadsServiceClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AssuredWorkloadsServiceClient(AssuredWorkloadsServiceClient const&) = default;
AssuredWorkloadsServiceClient& operator=(
AssuredWorkloadsServiceClient const&) = default;
@@ -78,7 +78,7 @@ class AssuredWorkloadsServiceClient {
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AssuredWorkloadsServiceClient const& a,
AssuredWorkloadsServiceClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/automl/auto_ml_client.h
Original file line number Diff line number Diff line change
@@ -80,15 +80,15 @@ class AutoMlClient {
~AutoMlClient();

///@{
// @name Copy and move support
/// @name Copy and move support
AutoMlClient(AutoMlClient const&) = default;
AutoMlClient& operator=(AutoMlClient const&) = default;
AutoMlClient(AutoMlClient&&) = default;
AutoMlClient& operator=(AutoMlClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(AutoMlClient const& a, AutoMlClient const& b) {
return a.connection_ == b.connection_;
}
4 changes: 2 additions & 2 deletions google/cloud/automl/prediction_client.h
Original file line number Diff line number Diff line change
@@ -71,15 +71,15 @@ class PredictionServiceClient {
~PredictionServiceClient();

///@{
// @name Copy and move support
/// @name Copy and move support
PredictionServiceClient(PredictionServiceClient const&) = default;
PredictionServiceClient& operator=(PredictionServiceClient const&) = default;
PredictionServiceClient(PredictionServiceClient&&) = default;
PredictionServiceClient& operator=(PredictionServiceClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(PredictionServiceClient const& a,
PredictionServiceClient const& b) {
return a.connection_ == b.connection_;
4 changes: 2 additions & 2 deletions google/cloud/baremetalsolution/bare_metal_solution_client.h
Original file line number Diff line number Diff line change
@@ -75,15 +75,15 @@ class BareMetalSolutionClient {
~BareMetalSolutionClient();

///@{
// @name Copy and move support
/// @name Copy and move support
BareMetalSolutionClient(BareMetalSolutionClient const&) = default;
BareMetalSolutionClient& operator=(BareMetalSolutionClient const&) = default;
BareMetalSolutionClient(BareMetalSolutionClient&&) = default;
BareMetalSolutionClient& operator=(BareMetalSolutionClient&&) = default;
///@}

///@{
// @name Equality
/// @name Equality
friend bool operator==(BareMetalSolutionClient const& a,
BareMetalSolutionClient const& b) {
return a.connection_ == b.connection_;
Loading
Oops, something went wrong.