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

GH-43796: [C++] Indent preprocessor directives #43798

Merged
merged 2 commits into from
Sep 6, 2024

Conversation

kou
Copy link
Member

@kou kou commented Aug 23, 2024

Rationale for this change

This is for easy to read.

FYI: Google C++ style guide doesn't require indent in preprocessor directives nor deny it:

https://google.github.io/styleguide/cppguide.html#Preprocessor_Directives

// Good - directives at beginning of line
  if (lopsided_score) {
#if DISASTER_PENDING      // Correct -- Starts at beginning of line
    DropEverything();
# if NOTIFY               // OK but not required -- Spaces after #
    NotifyClient();
# endif
#endif
    BackToNormal();
  }

What changes are included in this PR?

  • Add clang-format configurations for preprocessor directives indentation
  • Apply these configurations

Are these changes tested?

Yes.

Are there any user-facing changes?

No.

Copy link

⚠️ GitHub issue #43796 has been automatically assigned in GitHub to PR creator.

@github-actions github-actions bot added awaiting merge Awaiting merge and removed awaiting committer review Awaiting committer review labels Aug 23, 2024
Copy link
Contributor

@zanmato1984 zanmato1984 left a comment

Choose a reason for hiding this comment

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

LGTM.

Just one nit: I think the PR title doesn't reflect all the aspects of the change. Maybe we can change it to just "indent preprocessor directives"?

@kou kou changed the title GH-43796: [C++] Indent #if (preprocessor directives) GH-43796: [C++] Indent preprocessor directives Aug 28, 2024
@kou
Copy link
Member Author

kou commented Aug 28, 2024

It makes sense. I've chanted the title as you suggested.

@kou
Copy link
Member Author

kou commented Aug 28, 2024

(I'll fix the lint failure later.)

@kou
Copy link
Member Author

kou commented Aug 29, 2024

@kou kou force-pushed the cpp-preprocessor-indent branch from 36068da to 29fb2a1 Compare September 6, 2024 02:23
@kou
Copy link
Member Author

kou commented Sep 6, 2024

No objection in the discussion thread.

@kou
Copy link
Member Author

kou commented Sep 6, 2024

I'll merge this.

@kou kou merged commit 5ad0b3e into apache:main Sep 6, 2024
38 of 39 checks passed
@kou kou removed the awaiting merge Awaiting merge label Sep 6, 2024
@kou kou deleted the cpp-preprocessor-indent branch September 6, 2024 05:18
zanmato1984 pushed a commit to zanmato1984/arrow that referenced this pull request Sep 6, 2024
### Rationale for this change

This is for easy to read.

FYI: Google C++ style guide doesn't require indent in preprocessor directives nor deny it:

https://google.github.io/styleguide/cppguide.html#Preprocessor_Directives

```cpp
// Good - directives at beginning of line
  if (lopsided_score) {
#if DISASTER_PENDING      // Correct -- Starts at beginning of line
    DropEverything();
# if NOTIFY               // OK but not required -- Spaces after #
    NotifyClient();
# endif
#endif
    BackToNormal();
  }
```

### What changes are included in this PR?

* Add clang-format configurations for preprocessor directives indentation
* Apply these configurations

### Are these changes tested?

Yes.

### Are there any user-facing changes?

No.
* GitHub Issue: apache#43796

Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
Copy link

After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 5ad0b3e.

There were no benchmark performance regressions. 🎉

The full Conbench report has more details. It also includes information about 4 possible false positives for unstable benchmarks that are known to sometimes produce them.

khwilson pushed a commit to khwilson/arrow that referenced this pull request Sep 14, 2024
### Rationale for this change

This is for easy to read.

FYI: Google C++ style guide doesn't require indent in preprocessor directives nor deny it:

https://google.github.io/styleguide/cppguide.html#Preprocessor_Directives

```cpp
// Good - directives at beginning of line
  if (lopsided_score) {
#if DISASTER_PENDING      // Correct -- Starts at beginning of line
    DropEverything();
# if NOTIFY               // OK but not required -- Spaces after #
    NotifyClient();
# endif
#endif
    BackToNormal();
  }
```

### What changes are included in this PR?

* Add clang-format configurations for preprocessor directives indentation
* Apply these configurations

### Are these changes tested?

Yes.

### Are there any user-facing changes?

No.
* GitHub Issue: apache#43796

Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants