From edab599edaf67d37a3a2e954371128676a8cf9cc Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Thu, 27 Jul 2023 10:31:55 -0400
Subject: [PATCH] DRTVWR-587: Revert "Try again to address older clang
 difficulties."

That wasn't the issue. This is a compiler bug:
https://github.com/llvm/llvm-project/issues/41999
https://stackoverflow.com/q/57080425
https://bugs.llvm.org/show_bug.cgi?id=42654

This reverts commit c406fa7ae97441d1d6e0ea6727c42c8f978fabed.
---
 indra/llcommon/lazyeventapi.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/indra/llcommon/lazyeventapi.h b/indra/llcommon/lazyeventapi.h
index 8bedb6fe18f..e2dec8f35b1 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));
                 });
         }
 
-- 
GitLab