Fix a few files not properly indented.

other-indent
Jeff Davis 2020-12-18 09:18:55 -08:00
parent 145112f3a0
commit d05a5c8766
4 changed files with 11 additions and 11 deletions

View File

@ -37,10 +37,10 @@
*/ */
typedef struct DistributeObjectOps typedef struct DistributeObjectOps
{ {
char * (*deparse)(Node *); char *(*deparse)(Node *);
void (*qualify)(Node *); void (*qualify)(Node *);
List * (*preprocess)(Node *, const char *); List *(*preprocess)(Node *, const char *);
List * (*postprocess)(Node *, const char *); List *(*postprocess)(Node *, const char *);
ObjectAddress (*address)(Node *, bool); ObjectAddress (*address)(Node *, bool);
} DistributeObjectOps; } DistributeObjectOps;

View File

@ -108,7 +108,7 @@ typedef struct ListCellAndListWrapper
for (int var ## PositionDoNotUse = 0; \ for (int var ## PositionDoNotUse = 0; \
(var ## PositionDoNotUse) < list_length(l) && \ (var ## PositionDoNotUse) < list_length(l) && \
(((var) = list_nth(l, var ## PositionDoNotUse)) || true); \ (((var) = list_nth(l, var ## PositionDoNotUse)) || true); \
var ## PositionDoNotUse ++) var ## PositionDoNotUse++)
#else #else
#define foreach_ptr_append(var, l) foreach_ptr(var, l) #define foreach_ptr_append(var, l) foreach_ptr(var, l)
#endif #endif