mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
This commit is contained in:
@ -72,7 +72,7 @@ extern void *MemoryContextAlloc(MemoryContext context, Size size);
|
||||
extern void *MemoryContextAllocZero(MemoryContext context, Size size);
|
||||
extern void *MemoryContextAllocZeroAligned(MemoryContext context, Size size);
|
||||
extern void *MemoryContextAllocExtended(MemoryContext context,
|
||||
Size size, int flags);
|
||||
Size size, int flags);
|
||||
|
||||
extern void *palloc(Size size);
|
||||
extern void *palloc0(Size size);
|
||||
@ -117,7 +117,7 @@ MemoryContextSwitchTo(MemoryContext context)
|
||||
|
||||
/* Registration of memory context reset/delete callbacks */
|
||||
extern void MemoryContextRegisterResetCallback(MemoryContext context,
|
||||
MemoryContextCallback *cb);
|
||||
MemoryContextCallback *cb);
|
||||
|
||||
/*
|
||||
* These are like standard strdup() except the copied string is
|
||||
|
Reference in New Issue
Block a user