File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -676,7 +676,7 @@ typedef struct RT_RADIX_TREE_CONTROL
676
676
} RT_RADIX_TREE_CONTROL ;
677
677
678
678
/* Entry point for allocating and accessing the tree */
679
- typedef struct RT_RADIX_TREE
679
+ struct RT_RADIX_TREE
680
680
{
681
681
MemoryContext context ;
682
682
@@ -691,7 +691,7 @@ typedef struct RT_RADIX_TREE
691
691
/* leaf_context is used only for single-value leaves */
692
692
MemoryContextData * leaf_context ;
693
693
#endif
694
- } RT_RADIX_TREE ;
694
+ };
695
695
696
696
/*
697
697
* Iteration support.
@@ -714,7 +714,7 @@ typedef struct RT_NODE_ITER
714
714
} RT_NODE_ITER ;
715
715
716
716
/* state for iterating over the whole radix tree */
717
- typedef struct RT_ITER
717
+ struct RT_ITER
718
718
{
719
719
RT_RADIX_TREE * tree ;
720
720
@@ -728,7 +728,7 @@ typedef struct RT_ITER
728
728
729
729
/* The key constructed during iteration */
730
730
uint64 key ;
731
- } RT_ITER ;
731
+ };
732
732
733
733
734
734
/* verification (available only in assert-enabled builds) */
You can’t perform that action at this time.
0 commit comments