Skip to content

Commit

Permalink
command_line/arguments: Cleaned up the formatting of the parseArgumen…
Browse files Browse the repository at this point in the history
…ts() implementations
  • Loading branch information
dragonmux committed Oct 14, 2024
1 parent e671e74 commit 2dcbc9b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions substrate/command_line/arguments
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,7 @@ namespace substrate::commandLine
template<typename... options_t> [[nodiscard]] inline std::optional<arguments_t>
parseArguments(size_t argCount, const char *const *argList,
const optionsRoot_t<options_t...> &optionsRoot) noexcept
{
return parseArguments(argCount, argList, optionsRoot.options());
}
{ return parseArguments(argCount, argList, optionsRoot.options()); }

[[nodiscard]] SUBSTRATE_API bool operator ==(const item_t &lhs, const item_t &rhs) noexcept;
[[nodiscard]] SUBSTRATE_API bool operator !=(const item_t &lhs, const item_t &rhs) noexcept;
Expand Down

0 comments on commit 2dcbc9b

Please sign in to comment.