Skip to content

Commit 9ee42de

Browse files
chore(deps): pre-commit.ci autoupdate (#1035)
<!--pre-commit.ci start--> updates: - [github.com/psf/black: 24.4.0 → 24.4.2](psf/black@24.4.0...24.4.2) - [github.com/pre-commit/mirrors-clang-format: v18.1.3 → v18.1.4](pre-commit/mirrors-clang-format@v18.1.3...v18.1.4) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 4ea9364 commit 9ee42de

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ci:
55

66
repos:
77
- repo: https://github.com/psf/black
8-
rev: 24.4.0
8+
rev: 24.4.2
99
hooks:
1010
- id: black
1111

@@ -26,7 +26,7 @@ repos:
2626
- id: debug-statements
2727

2828
- repo: https://github.com/pre-commit/mirrors-clang-format
29-
rev: v18.1.3
29+
rev: v18.1.4
3030
hooks:
3131
- id: clang-format
3232
types_or: [c++, c, cuda]

fuzz/fuzzApp.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace CLI {
2424
class intWrapper64 {
2525
public:
2626
intWrapper64() = default;
27-
explicit intWrapper64(int64_t v) : val(v){};
27+
explicit intWrapper64(int64_t v) : val(v) {};
2828
CLI11_NODISCARD int64_t value() const { return val; }
2929

3030
private:
@@ -34,7 +34,7 @@ class intWrapper64 {
3434
class doubleWrapper {
3535
public:
3636
doubleWrapper() = default;
37-
explicit doubleWrapper(double v) : val(v){};
37+
explicit doubleWrapper(double v) : val(v) {};
3838
CLI11_NODISCARD double value() const { return val; }
3939

4040
private:
@@ -44,7 +44,7 @@ class doubleWrapper {
4444
class stringWrapper {
4545
public:
4646
stringWrapper() = default;
47-
explicit stringWrapper(std::string_view v) : val(v){};
47+
explicit stringWrapper(std::string_view v) : val(v) {};
4848
CLI11_NODISCARD std::string value() const { return val; }
4949

5050
private:

0 commit comments

Comments
 (0)