File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 11
11
- uses : DoozyX/clang-format-lint-action@v0.20
12
12
with :
13
13
source : " ."
14
- exclude : " tests "
14
+ exclude : " "
15
15
extensions : ' h,cpp'
16
16
style : file
17
17
clangFormatVersion : 20
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ for a full list of features.
32
32
| ------------- | ------------- |
33
33
| Doxygen | [ ![ doxygen] ( https://github.com/Blake-Madden/tinyexpr-plusplus/actions/workflows/doxygen.yml/badge.svg )] ( https://github.com/Blake-Madden/tinyexpr-plusplus/actions/workflows/doxygen.yml ) |
34
34
| Spellcheck | [ ![ Spell Check] ( https://github.com/Blake-Madden/i18n-check/actions/workflows/spell-check.yml/badge.svg )] ( https://github.com/Blake-Madden/i18n-check/actions/workflows/spell-check.yml ) |
35
+ | clang-format | [ ![ clang-format] ( https://github.com/Blake-Madden/tinyexpr-plusplus/actions/workflows/clang-format.yml/badge.svg )] ( https://github.com/Blake-Madden/tinyexpr-plusplus/actions/workflows/clang-format.yml ) |
35
36
36
37
## Compatibility Advisory
37
38
Original file line number Diff line number Diff line change 7
7
8
8
#include " ../tinyexpr.h"
9
9
10
- extern " C" int LLVMFuzzerTestOneInput (const uint8_t * Data, size_t Size)
11
- {
12
- te_parser tep;
13
- tep.compile (std::string (reinterpret_cast <const char *>(Data), Size).c_str ());
14
- return 0 ;
15
- }
10
+ extern " C" int LLVMFuzzerTestOneInput (const uint8_t * Data, size_t Size)
11
+ {
12
+ te_parser tep;
13
+ tep.compile (std::string (reinterpret_cast <const char *>(Data), Size).c_str ());
14
+ return 0 ;
15
+ }
Original file line number Diff line number Diff line change 47
47
48
48
#include " ../tinyexpr.h"
49
49
#include < array>
50
- #include < regex >
50
+ #include < catch2/benchmark/catch_benchmark_all.hpp >
51
51
#include < catch2/catch_test_macros.hpp>
52
52
#include < catch2/matchers/catch_matchers_floating_point.hpp>
53
- #include < catch2/benchmark/catch_benchmark_all.hpp >
53
+ #include < regex >
54
54
55
55
// clang-format off
56
56
// NOLINTBEGIN
You can’t perform that action at this time.
0 commit comments