Skip to content

Commit

Permalink
Merge pull request #64 from ken-matsui/unify/coding-style
Browse files Browse the repository at this point in the history
Unify coding style
  • Loading branch information
loliGothicK committed Dec 4, 2020
2 parents 58941e7 + 10f642b commit db6ce84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mitama/result/detail/fwd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ template <class = std::monostate, class...> class success_t;
template <class T> success_t(T&&) -> success_t<T>;

template <class = std::monostate, class...> class failure_t;
template <class E> failure_t(E&&)->failure_t<E>;
template <class E> failure_t(E&&) -> failure_t<E>;

class in_place_ok_t {};
inline constexpr in_place_ok_t in_place_ok = {};
Expand Down

0 comments on commit db6ce84

Please sign in to comment.