blob: dd3ef35d61fc3095b13d7878864961e9db555c35 (
plain)
1
2
3
4
5
6
7
8
|
// Presence of 2 inclusion cycles
// b.h -> a.h -> b.h -> ...
// c.h -> a.h -> c.h -> ...
// makes it unfeasible to reach max inclusion depth in all possible ways. Need
// to stop earlier.
#include "b.h"
#include "c.h"
|