Skip to content

Commit b19d373

Browse files
committed
bits/stdc++.h is non-standard and unportable, replace with actually used headers
1 parent d63dc3c commit b19d373

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

graph.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <bits/stdc++.h>
1+
#include <algorithm>
22

33
#include "graph.hxx"
44
#include "dsu.hxx"

main.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#include <bits/stdc++.h>
1+
#include <cassert>
2+
#include <cstdio>
3+
#include <iostream>
24

35
#include "graph.hxx"
46

0 commit comments

Comments
 (0)