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

Modify regex for clang format #142

Merged
merged 1 commit into from
Jun 18, 2024
Merged

Modify regex for clang format #142

merged 1 commit into from
Jun 18, 2024

Conversation

boulderdaze
Copy link
Collaborator

@boulderdaze boulderdaze commented Jun 7, 2024

Modified regex for clang format.

The current REGEX failed to list an external header with - above system headers. (The example is from tuvx, which I found the failure.)
Current:

#include <tuvx/util/config_yaml.h>

#include <cstring>
#include <fstream>

#include <yaml-cpp/yaml.h>

This PR:

#include <tuvx/util/config_yaml.h>

#include <yaml-cpp/yaml.h>

#include <cstring>
#include <fstream>

@boulderdaze boulderdaze marked this pull request as ready for review June 7, 2024 22:03
@boulderdaze boulderdaze merged commit d7808ee into main Jun 18, 2024
50 of 55 checks passed
@boulderdaze boulderdaze deleted the clang-format-regex branch June 18, 2024 16:04
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.

3 participants