Re: [[gcc_struct]] potential clang compatibility concerns

2024-01-13 Thread Dan Klishch via Gcc
On Sat, Dec 2, 2023 at 4:50 PM Dan Klishch wrote: > > Hi, > > In the discussion of LLVM's PR adding `[[gnu::gcc_struct]]` support to Clang > (https://github.com/llvm/llvm-project/pull/71148), maintainers asked > me to make sure that whatever > is done there, makes sense for GCC too. > > To summari

Re: Proposal: allow to extend C++ template argument deduction via plugins

2022-07-15 Thread Dan Klishch via Gcc
Haskell (I only briefly read project description) <https://github.com/dylex/postgresql-typed>. Thanks, Dan Klishch On 7/15/2022 4:18 PM, Ben Boeckel wrote: On Thu, Jul 14, 2022 at 18:46:47 +0200, Dan Klishch via Gcc wrote: As far as I understand the currently available plugin extension points,

Proposal: allow to extend C++ template argument deduction via plugins

2022-07-14 Thread Dan Klishch via Gcc
Hi, As far as I understand the currently available plugin extension points, it is not possible to modify template argument deduction algorithm (except the theoretical possibility to completely override parsing step). However, such opportunity might be beneficial for projects like libpqxx, for exam