Skip to content

Commit

Permalink
Fix regions.c
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Jan 2, 2025
1 parent 2258c5e commit 1098326
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion h3/src/binding/regions.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <utils/geo_decls.h> // PG_GETARG_POLYGON_P
#include <utils/lsyscache.h> // get_typlenbyvalalign
#include <catalog/pg_type.h> // POLYGONOID
#include <utils/builtins.h> // text_to_cstring

#include "error.h"
#include "type.h"
Expand Down Expand Up @@ -168,7 +169,7 @@ h3_polygon_to_cells_experimental(PG_FUNCTION_ARGS)
MemoryContext oldcontext =
MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);

char *containment_mode
char *containment_mode;
int64_t maxSize;
H3Index *indices;
ArrayType *holes;
Expand Down

0 comments on commit 1098326

Please sign in to comment.