[Lldb-commits] [clang-tools-extra] [clang] [lldb] [c++20] P1907R1: Support for generalized non-type template arguments of scalar type. (PR #78041)
via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 13 07:59:25 PST 2024
================
@@ -628,6 +628,10 @@ static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
return IsStructurallyEquivalent(Context, Arg1.getAsExpr(),
Arg2.getAsExpr());
+ case TemplateArgument::StructuralValue:
+ // FIXME: Do we need to customize the comparison?
----------------
cor3ntin wrote:
That looks correct to me, do you think we still need the fixme?
https://github.com/llvm/llvm-project/pull/78041
More information about the lldb-commits
mailing list