Skip to content

Commit

Permalink
Remove extra semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin Jabot authored and horenmar committed Jul 10, 2020
1 parent 2cd5e70 commit a717218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/catch2/internal/catch_clara_upstream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -860,12 +860,12 @@ namespace detail {
auto optional() -> DerivedT & {
m_optionality = Optionality::Optional;
return static_cast<DerivedT &>( *this );
};
}

auto required() -> DerivedT & {
m_optionality = Optionality::Required;
return static_cast<DerivedT &>( *this );
};
}

auto isOptional() const -> bool {
return m_optionality == Optionality::Optional;
Expand Down

0 comments on commit a717218

Please sign in to comment.