Volodymyr Sapsai | 482070b | 2018-07-25 19:16:26 +0000 | [diff] [blame^] | 1 | // Presence of 2 inclusion cycles |
2 | // b.h -> a.h -> b.h -> ... | ||||
3 | // c.h -> a.h -> c.h -> ... | ||||
4 | // makes it unfeasible to reach max inclusion depth in all possible ways. Need | ||||
5 | // to stop earlier. | ||||
6 | |||||
7 | #include "b.h" | ||||
8 | #include "c.h" |