Skip to content
Snippets Groups Projects
Commit edab599e authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-587: Revert "Try again to address older clang difficulties."

parent c406fa7a
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -83,11 +83,10 @@ namespace LL ...@@ -83,11 +83,10 @@ namespace LL
conn.disconnect(); conn.disconnect();
// apply() expects a tuple specifying ALL the arguments, // apply() expects a tuple specifying ALL the arguments,
// so prepend instance. // so prepend instance.
std::tuple full_args{ std::tuple_cat(std::make_tuple(instance), args) };
// apply() can't accept a template per se; it needs a // apply() can't accept a template per se; it needs a
// particular specialization. // particular specialization.
apply(&LazyEventAPIBase::add_trampoline<const std::string&, const std::string&, ARGS...>, apply(&LazyEventAPIBase::add_trampoline<const std::string&, const std::string&, ARGS...>,
full_args); std::tuple_cat(std::make_tuple(instance), args));
}); });
} }
......
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