Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/dijkstra/dijkstra.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include "c_types/path_rt.h"
#include "process/shortestPath_process.h"

PG_MODULE_MAGIC;

PGDLLEXPORT Datum _pgr_dijkstra_v4(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(_pgr_dijkstra_v4);

Expand Down
6 changes: 6 additions & 0 deletions src/version/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include "c_common/postgres_connection.h"
#include "./version.h"

#ifdef PG_MODULE_MAGIC_EXT
PG_MODULE_MAGIC_EXT(.name = "pgrouting", .version = PROJECT_VERSION);
#else
PG_MODULE_MAGIC;
#endif

#define UNUSED(x) (void)(x)

PGDLLEXPORT Datum _pgr_boost_version(PG_FUNCTION_ARGS);
Expand Down
Loading