Skip to content

Commit 92fbd28

Browse files
committed
Fixed compilation error
1 parent e80dfe9 commit 92fbd28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph/dinic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const int MAXN = 1e5 + 5;
1616

1717
template<typename T>
1818
struct Dinic {
19-
constexpr T flow_inf = 1e18;
19+
static constexpr T flow_inf = 1e18;
2020

2121
struct FlowEdge {
2222
int v, u;

0 commit comments

Comments
 (0)