NCAR / musica

Multi-Scale Infrastructure for Chemistry Modeling
https://wiki.ucar.edu/display/MUSICA/MUSICA+Home
Apache License 2.0
3 stars 2 forks source link

Modify regex for clang format #142

Closed boulderdaze closed 2 weeks ago

boulderdaze commented 1 month ago

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>