Re: remove pg_restrict workaround

2025-10-29 Thread Peter Eisentraut
On 15.10.25 15:58, Tom Lane wrote: Peter Eisentraut writes: When in C11 mode, MSVC supports the standard "restrict" keyword, so we don't need the workaround with using "pg_restrict" instead anymore. (Just for clarification, restrict is a C99 feature, but MSVC only accepts it properly in C11 mod

Re: remove pg_restrict workaround

2025-10-17 Thread Tom Lane
Peter Eisentraut writes: > When in C11 mode, MSVC supports the standard "restrict" keyword, so we > don't need the workaround with using "pg_restrict" instead anymore. > (Just for clarification, restrict is a C99 feature, but MSVC only > accepts it properly in C11 mode.) So I'm proposing to re