Skip to content
Snippets Groups Projects
Commit 422ffb50 authored by Henrich Lauko's avatar Henrich Lauko
Browse files

rst: Allow abstract constructors to take arguments.

parent 4fd6aee6
No related branches found
No related tags found
No related merge requests found
...@@ -120,6 +120,13 @@ namespace __dios::rst::abstract { ...@@ -120,6 +120,13 @@ namespace __dios::rst::abstract {
return taint< C >(); return taint< C >();
} }
template< typename C, typename A, typename ...Args >
_LART_INLINE C make_abstract( Args && ...args ) noexcept
{
__lart_stash( static_cast< void * >( A::lift_any( std::forward< Args >( args )... ) ) );
return taint< C >();
}
template< typename A, typename C > template< typename A, typename C >
_LART_INLINE auto lift_one( C c ) noexcept _LART_INLINE auto lift_one( C c ) noexcept
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment