Skip to content

Commit e4b04a3

Browse files
committed
remove DOXYGEN_SHOULD_SKIP_THIS macro in polygon.c
1 parent 7b431b0 commit e4b04a3

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

polygon.c

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
/* Polygon functions */
44

55

6-
#ifndef DOXYGEN_SHOULD_SKIP_THIS
7-
86
PG_FUNCTION_INFO_V1(spherepoly_in);
97
PG_FUNCTION_INFO_V1(spherepoly_equal);
108
PG_FUNCTION_INFO_V1(spherepoly_equal_neg);
@@ -58,8 +56,6 @@ PG_FUNCTION_INFO_V1(spheretrans_poly_inverse);
5856
PG_FUNCTION_INFO_V1(spherepoly_add_point);
5957
PG_FUNCTION_INFO_V1(spherepoly_add_points_finalize);
6058

61-
#endif
62-
6359

6460
/*
6561
* "Center" of a polygon. "v" is the pointer to the center of
@@ -487,10 +483,10 @@ spoly_eq(const SPOLY *p1, const SPOLY *p2, bool dir)
487483
if (p1->npts == p2->npts)
488484
{
489485

490-
int32 i,
491-
k,
492-
cntr,
493-
shift;
486+
int32 i,
487+
k,
488+
cntr,
489+
shift;
494490

495491
for (shift = 0; shift < p1->npts; shift++)
496492
{

0 commit comments

Comments
 (0)