mirror of
https://github.com/CLIUtils/CLI11.git
synced 2026-01-19 04:52:08 +00:00
chore(deps): pre-commit.ci autoupdate (#1035)
<!--pre-commit.ci start--> updates: - [github.com/psf/black: 24.4.0 → 24.4.2](https://github.com/psf/black/compare/24.4.0...24.4.2) - [github.com/pre-commit/mirrors-clang-format: v18.1.3 → v18.1.4](https://github.com/pre-commit/mirrors-clang-format/compare/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>
This commit is contained in:
committed by
GitHub
parent
4ea9364a08
commit
9ee42deb29
@@ -24,7 +24,7 @@ namespace CLI {
|
||||
class intWrapper64 {
|
||||
public:
|
||||
intWrapper64() = default;
|
||||
explicit intWrapper64(int64_t v) : val(v){};
|
||||
explicit intWrapper64(int64_t v) : val(v) {};
|
||||
CLI11_NODISCARD int64_t value() const { return val; }
|
||||
|
||||
private:
|
||||
@@ -34,7 +34,7 @@ class intWrapper64 {
|
||||
class doubleWrapper {
|
||||
public:
|
||||
doubleWrapper() = default;
|
||||
explicit doubleWrapper(double v) : val(v){};
|
||||
explicit doubleWrapper(double v) : val(v) {};
|
||||
CLI11_NODISCARD double value() const { return val; }
|
||||
|
||||
private:
|
||||
@@ -44,7 +44,7 @@ class doubleWrapper {
|
||||
class stringWrapper {
|
||||
public:
|
||||
stringWrapper() = default;
|
||||
explicit stringWrapper(std::string_view v) : val(v){};
|
||||
explicit stringWrapper(std::string_view v) : val(v) {};
|
||||
CLI11_NODISCARD std::string value() const { return val; }
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user