pgsql: Relocate static function declarations to be after typedefs in js

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Relocate static function declarations to be after typedefs in js
Date: 2017-01-22 19:08:31
Message-ID: E1cVNV9-0003zJ-VN@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Relocate static function declarations to be after typedefs in jsonfuncs.c.

Project style is to put things in this order, for the good and sufficient
reason that you often need the typedefs in the function declarations.
There already was one function declaration that needed a typedef, which
was randomly placed away from all the other static function declarations
in consequence. And the submitted patch for better json_populate_record
functionality jumped through even more hoops in order to preserve this
bad idea.

This patch only moves lines from point A to point B, no other changes.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/90992e0e2f9fc4aa0f6402f0327604e5fef4630c

Modified Files
--------------
src/backend/utils/adt/jsonfuncs.c | 215 +++++++++++++++++++-------------------
1 file changed, 108 insertions(+), 107 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2017-01-23 13:29:22 pgsql: Fix typo
Previous Message Tom Lane 2017-01-22 16:47:45 pgsql: Remove no-longer-needed loop in ExecGather().