Skip to content

Commit 050ecf7

Browse files
try fix macos-x64 build
1 parent 2983475 commit 050ecf7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

include/extractor/area/dijkstra.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ template <class vertex_t> class DijkstraImpl
2020
{
2121
struct Edge
2222
{
23+
Edge(size_t other, double weight)
24+
: other{other}, weight{weight} {}; // for macos-x64 clang-14
2325
size_t other;
2426
double weight;
2527
};

0 commit comments

Comments
 (0)