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 5
5
6
6
repos :
7
7
- repo : https://github.com/psf/black
8
- rev : 24.4.0
8
+ rev : 24.4.2
9
9
hooks :
10
10
- id : black
11
11
26
26
- id : debug-statements
27
27
28
28
- repo : https://github.com/pre-commit/mirrors-clang-format
29
- rev : v18.1.3
29
+ rev : v18.1.4
30
30
hooks :
31
31
- id : clang-format
32
32
types_or : [c++, c, cuda]
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace CLI {
24
24
class intWrapper64 {
25
25
public:
26
26
intWrapper64 () = default ;
27
- explicit intWrapper64 (int64_t v) : val(v){};
27
+ explicit intWrapper64 (int64_t v) : val(v) {};
28
28
CLI11_NODISCARD int64_t value () const { return val; }
29
29
30
30
private:
@@ -34,7 +34,7 @@ class intWrapper64 {
34
34
class doubleWrapper {
35
35
public:
36
36
doubleWrapper () = default;
37
- explicit doubleWrapper (double v) : val(v){};
37
+ explicit doubleWrapper (double v) : val(v) {};
38
38
CLI11_NODISCARD double value () const { return val; }
39
39
40
40
private:
@@ -44,7 +44,7 @@ class doubleWrapper {
44
44
class stringWrapper {
45
45
public:
46
46
stringWrapper () = default ;
47
- explicit stringWrapper (std::string_view v) : val(v){};
47
+ explicit stringWrapper (std::string_view v) : val(v) {};
48
48
CLI11_NODISCARD std::string value () const { return val; }
49
49
50
50
private:
You can’t perform that action at this time.
0 commit comments