Fix compile.

This commit is contained in:
Relintai 2020-03-29 18:33:00 +02:00
parent eefe767369
commit a412a04be1

View File

@ -319,7 +319,7 @@ struct BorderVertex {
int hash;
};
bool compare_border_vertex(const BorderVertex &i1, const BorderVertex &i2) {
static bool compare_border_vertex(const BorderVertex &i1, const BorderVertex &i2) {
return (i1.hash < i2.hash);
}