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

Use std::make_unique<> instead of internal::make_unique<> #4375

Merged
merged 2 commits into from
Jan 11, 2025

Conversation

rouault
Copy link
Member

@rouault rouault commented Jan 9, 2025

No description provided.

@rouault rouault added this to the 9.6.0 milestone Jan 9, 2025
Comment on lines -2062 to +2064
}
else if (native_ca == nullptr && key == "native_ca"){
ctx->native_ca =
ci_equal(value, "ON") || ci_equal(value, "YES") ||
ci_equal(value, "TRUE");
} else if (native_ca == nullptr && key == "native_ca") {
ctx->native_ca = ci_equal(value, "ON") ||
ci_equal(value, "YES") ||
ci_equal(value, "TRUE");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems to be a change by clang-format. Why now? Didn't we run it over the whole repository?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems to be a change by clang-format

yes I've isolated the reformats in a separate commit

Why now? Didn't we run it over the whole repository?

Come from recent contributions from occasional contributors who haven't set up pre-commit, and we don't have yet a CI job to detect formatting violations.

@rouault rouault merged commit 6754b7c into OSGeo:master Jan 11, 2025
25 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants