Fixed multiple definition error with GCC 10 - #4

This commit is contained in:
Andrew Kane
2021-05-06 16:25:43 -07:00
parent de2ce0b1eb
commit 67e317141b
3 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
## 0.1.4 (unreleased)
- Fixed multiple definition error with GCC 10
## 0.1.3 (2021-05-06) ## 0.1.3 (2021-05-06)
- Added Dockerfile - Added Dockerfile

View File

@@ -6,6 +6,7 @@
#include "utils/guc.h" #include "utils/guc.h"
#include "utils/selfuncs.h" #include "utils/selfuncs.h"
int ivfflat_probes;
static relopt_kind ivfflat_relopt_kind; static relopt_kind ivfflat_relopt_kind;
/* /*

View File

@@ -38,7 +38,7 @@
#endif #endif
/* Variables */ /* Variables */
int ivfflat_probes; extern int ivfflat_probes;
typedef struct VectorArrayData typedef struct VectorArrayData
{ {