File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
clang-format :
11
- runs-on : ubuntu-20 .04
11
+ runs-on : ubuntu-22 .04
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
@@ -21,10 +21,10 @@ jobs:
21
21
- " example/**/*.cpp"
22
22
steps :
23
23
- run : |
24
- sudo apt-get install clang-format
24
+ sudo apt-get install clang-format-14
25
25
shopt -s globstar
26
26
- uses : actions/checkout@v2
27
- - run : clang-format -i ${{ matrix.files }}
27
+ - run : clang-format-14 -i ${{ matrix.files }}
28
28
- uses : ./.github/actions/process-linting-results
29
29
with :
30
30
linter_name : clang-format
Original file line number Diff line number Diff line change @@ -2039,8 +2039,8 @@ namespace jwt {
2039
2039
};
2040
2040
2041
2041
template <typename object_type, typename string_type>
2042
- using is_count_signature = typename std::is_integral<decltype (
2043
- std::declval<const object_type>().count(std::declval< const string_type>()))>;
2042
+ using is_count_signature = typename std::is_integral<decltype (std::declval< const object_type>().count(
2043
+ std::declval<const string_type>()))>;
2044
2044
2045
2045
template <typename object_type, typename string_type>
2046
2046
struct has_subcription_operator {
You can’t perform that action at this time.
0 commit comments