1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-29 20:23:55 +00:00

chore(deps): pre-commit.ci autoupdate (#1104)

<!--pre-commit.ci start-->
updates:
- [github.com/pre-commit/mirrors-clang-format: v19.1.4 →
v19.1.5](https://github.com/pre-commit/mirrors-clang-format/compare/v19.1.4...v19.1.5)
<!--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:
pre-commit-ci[bot] 2024-12-22 13:57:27 -08:00 committed by GitHub
parent a4e5560c5d
commit b71106f870
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -26,7 +26,7 @@ repos:
- id: debug-statements - id: debug-statements
- repo: https://github.com/pre-commit/mirrors-clang-format - repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.4 rev: v19.1.5
hooks: hooks:
- id: clang-format - id: clang-format
types_or: [c++, c, cuda] types_or: [c++, c, cuda]

View File

@ -76,8 +76,8 @@ projects, and can be customized for frameworks. It is tested on [Azure][] and
fitting framework][goofit]. It was inspired by [`plumbum.cli`][plumbum] for fitting framework][goofit]. It was inspired by [`plumbum.cli`][plumbum] for
Python. CLI11 has a user friendly introduction in this README, a more in-depth Python. CLI11 has a user friendly introduction in this README, a more in-depth
tutorial [GitBook][], as well as [API documentation][api-docs] generated by tutorial [GitBook][], as well as [API documentation][api-docs] generated by
Travis. See the [changelog](./CHANGELOG.md) or [GitHub Releases][] for details for Travis. See the [changelog](./CHANGELOG.md) or [GitHub Releases][] for details
current and past releases. Also see the [Version 1.0 post][], [Version 1.3 for current and past releases. Also see the [Version 1.0 post][], [Version 1.3
post][], [Version 1.6 post][], or [Version 2.0 post][] for more information. post][], [Version 1.6 post][], or [Version 2.0 post][] for more information.
You can be notified when new releases are made by subscribing to You can be notified when new releases are made by subscribing to
@ -142,8 +142,8 @@ After I wrote this, I also found the following libraries:
| [argparse][] | C++17 single file argument parser. Design seems similar to CLI11 in some ways. The author has several other interesting projects. | | [argparse][] | C++17 single file argument parser. Design seems similar to CLI11 in some ways. The author has several other interesting projects. |
| [lyra][] | a simple header only parser with composable options. Might work well for simple standardized parsing | | [lyra][] | a simple header only parser with composable options. Might work well for simple standardized parsing |
See [Awesome C++][] for a less-biased list of parsers. You can also find other single See [Awesome C++][] for a less-biased list of parsers. You can also find other
file libraries at [Single file libs][]. single file libraries at [Single file libs][].
</p></details> </p></details>
<br/> <br/>
@ -325,8 +325,8 @@ template to directly specify the conversion type.
Types such as (std or boost) `optional<int>`, `optional<double>`, and Types such as (std or boost) `optional<int>`, `optional<double>`, and
`optional<string>` and any other wrapper types are supported directly. For `optional<string>` and any other wrapper types are supported directly. For
purposes of CLI11 wrapper types are those which `value_type` definition. See purposes of CLI11 wrapper types are those which `value_type` definition. See
[CLI11 Advanced Topics/Custom Converters][] for information on how you can add your [CLI11 Advanced Topics/Custom Converters][] for information on how you can add
own converters for additional types. your own converters for additional types.
Vector types can also be used in the two parameter template overload Vector types can also be used in the two parameter template overload