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

DRTVWR-587: Tweak LazyEventAPIBase::add() to mollify clang.

Both the previous version and this compile and run successfully with Xcode
14.3.1, but our older TeamCity compiler chokes -- so we must iterate remotely,
sigh.
parent 861cf0a5
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -71,25 +71,22 @@ namespace LL ...@@ -71,25 +71,22 @@ namespace LL
mOperations.push_back(std::make_pair(name, desc)); mOperations.push_back(std::make_pair(name, desc));
// Use connect_extended() so the lambda is passed its own // Use connect_extended() so the lambda is passed its own
// connection. // connection.
// We can't bind an unexpanded parameter pack into a lambda -- // We can't bind an unexpanded parameter pack into a lambda --
// shame really. Instead, capture it as a std::tuple and then, in // shame really. Instead, capture all our args as a std::tuple and
// the lambda, use apply() to convert back to function args. // then, in the lambda, use apply() to pass to add_trampoline().
mParams.init.connect_extended( mParams.init.connect_extended(
[name, desc, rest = std::make_tuple(std::forward<ARGS>(rest)...)] [args = std::make_tuple(name, desc, std::forward<ARGS>(rest)...)]
(const boost::signals2::connection& conn, LLEventAPI* instance) (const boost::signals2::connection& conn, LLEventAPI* instance)
{ {
// we only need this connection once // we only need this connection once
conn.disconnect(); conn.disconnect();
// Our add() method distinguishes name and desc because we // apply() expects a tuple specifying ALL the arguments,
// capture them separately. But now, because apply() // so prepend instance.
// expects a tuple specifying ALL the arguments, expand to
// a tuple including add_trampoline() arguments: instance,
// name, desc, rest.
// 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...>,
std::tuple_cat(std::make_tuple(instance, name, desc), std::tuple_cat(std::make_tuple(instance), args));
rest));
}); });
} }
......
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