Skip to content

Commit

Permalink
*: Rename template parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Feb 7, 2024
1 parent 13b8ec1 commit 7ac37fb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions asteria/fwd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,15 @@ struct rcfwd : virtual Rcbase
void
vtable_key_function_GklPAslB() noexcept;

template<typename xReal = xReal>
refcnt_ptr<const xReal>
template<typename xTarget = xReal>
refcnt_ptr<const xTarget>
share_this() const
{ return this->Rcbase::template share_this<xReal, rcfwd>(); }
{ return this->Rcbase::template share_this<xTarget, rcfwd>(); }

template<typename xReal = xReal>
refcnt_ptr<xReal>
template<typename xTarget = xReal>
refcnt_ptr<xTarget>
share_this()
{ return this->Rcbase::template share_this<xReal, rcfwd>(); }
{ return this->Rcbase::template share_this<xTarget, rcfwd>(); }
};

template<typename xReal>
Expand All @@ -284,8 +284,8 @@ vtable_key_function_GklPAslB() noexcept
template<typename xReal>
using rcfwd_ptr = refcnt_ptr<
typename ::rocket::copy_cv<
rcfwd<typename ::std::remove_cv<xReal>::type>,
xReal>::type>;
rcfwd<typename ::std::remove_cv<xReal>::type>,
xReal>::type>;

template<typename xTarget, typename xReal>
constexpr
Expand Down

0 comments on commit 7ac37fb

Please sign in to comment.