pgsql: Work around overly strict restrict checks by MSVC.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Work around overly strict restrict checks by MSVC.
Date: 2017-10-12 00:28:21
Message-ID: E1e2RML-0002dp-LY@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Work around overly strict restrict checks by MSVC.

Apparently MSVC requires a * before a restrict in a variable
declaration, even if the adorned type already is a pointer, just via
typedef.

As reported by buildfarm animal woodlouse.

Author: Andres Freund
Discussion: https://postgr.es/m/20171012001320.4putagiruuehtvb6@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/060b069984a69ff0255ce318f10681c553613bef

Modified Files
--------------
src/include/libpq/pqformat.h | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2017-10-12 02:11:02 pgsql: Temporary attempt at a workaround for further MSVC restrict buil
Previous Message Andres Freund 2017-10-12 00:13:20 Re: pgsql: Add configure infrastructure to detect support for C99's restric