diff --git a/indra/llcommon/lazyeventapi.h b/indra/llcommon/lazyeventapi.h
index 8bedb6fe18ff212af38fef69ca27a2e2df0d983b..e2dec8f35b17565591ec98f3e04995fc1aa9ca69 100644
--- a/indra/llcommon/lazyeventapi.h
+++ b/indra/llcommon/lazyeventapi.h
@@ -83,11 +83,10 @@ namespace LL
                     conn.disconnect();
                     // apply() expects a tuple specifying ALL the arguments,
                     // 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
                     // particular specialization.
                     apply(&LazyEventAPIBase::add_trampoline<const std::string&, const std::string&,  ARGS...>,
-                          full_args);
+                          std::tuple_cat(std::make_tuple(instance), args));
                 });
         }