From 2729c980eba1490f9543326568860ae142617d17 Mon Sep 17 00:00:00 2001 From: Matheus Izvekov Date: Mon, 20 May 2024 01:15:03 -0300 Subject: [PATCH 01/10] [clang] Implement CWG2398 provisional TTP matching to class templates This extends default argument deduction to cover class templates as well. This solves some ambuguity introduced in P0522 regarding how template template parameters are partially ordered, and should reduce the negative impact of enabling `-frelaxed-template-template-args` by default. Given the following example: ```C++ template struct A; template struct B; template