[Lldb-commits] [lldb] [clang-tools-extra] [clang] [c++20] P1907R1: Support for generalized non-type template arguments of scalar type. (PR #78041)
Andrey Ali Khan Bolshakov via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 13 08:53:57 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?
----------------
bolshakov-a wrote:
I agree that it seems like it should work. Dropped the comment.
https://github.com/llvm/llvm-project/pull/78041
More information about the lldb-commits
mailing list