From 4cbca181a49eacf50e901b61ec9d0c689366e356 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Thu, 22 Jan 2026 09:19:38 -0700 Subject: [PATCH] :bug: Qualify use of `stdx::tuple_cat` Problem: - Attempting to instantiate `std::tuple_cat` on `stdx::tuple` can lead to errors because `std::tuple_size` is not defined. Solution: - Qualify use of `tuple_cat`. --- include/stdx/ct_format.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/stdx/ct_format.hpp b/include/stdx/ct_format.hpp index a7fc15b..1673a27 100644 --- a/include/stdx/ct_format.hpp +++ b/include/stdx/ct_format.hpp @@ -243,7 +243,8 @@ constexpr auto operator+(format_result r1, format_result r2) { return make_format_result>>( - r1.str + r2.str, tuple_cat(std::move(r1.args), std::move(r2.args))); + r1.str + r2.str, + stdx::tuple_cat(std::move(r1.args), std::move(r2.args))); } template struct null_output;