# HG changeset patch
# User Alpar Juttner <alpar@cs.elte.hu>
# Date 1223641357 -3600
# Node ID 5e12d7734036c18735debe547920c35311b81a67
# Parent 1e2d6ca807934dd9ca4f87b55e7a542a3cff4143
arrert.h is now included by core.h (#161)
diff --git a/lemon/core.h b/lemon/core.h
a
|
b
|
|
24 | 24 | |
25 | 25 | #include <lemon/bits/enable_if.h> |
26 | 26 | #include <lemon/bits/traits.h> |
| 27 | #include <lemon/assert.h> |
27 | 28 | |
28 | 29 | ///\file |
29 | 30 | ///\brief LEMON core utilities. |
diff --git a/lemon/dfs.h b/lemon/dfs.h
a
|
b
|
|
27 | 27 | #include <lemon/bits/path_dump.h> |
28 | 28 | #include <lemon/core.h> |
29 | 29 | #include <lemon/error.h> |
30 | | #include <lemon/assert.h> |
31 | 30 | #include <lemon/maps.h> |
32 | 31 | #include <lemon/path.h> |
33 | 32 | |
diff --git a/lemon/lgf_reader.h b/lemon/lgf_reader.h
a
|
b
|
|
31 | 31 | #include <set> |
32 | 32 | #include <map> |
33 | 33 | |
34 | | #include <lemon/assert.h> |
35 | 34 | #include <lemon/core.h> |
36 | 35 | |
37 | 36 | #include <lemon/lgf_writer.h> |
diff --git a/lemon/lgf_writer.h b/lemon/lgf_writer.h
a
|
b
|
|
33 | 33 | #include <vector> |
34 | 34 | #include <functional> |
35 | 35 | |
36 | | #include <lemon/assert.h> |
37 | 36 | #include <lemon/core.h> |
38 | 37 | #include <lemon/maps.h> |
39 | 38 | |