link lines, which affects external libraries pulled up from deep within the dependency tree. Fixed by preserving order everywhere.
11 lines
170 B
C
11 lines
170 B
C
// depends on NoDepC and NoDepE (and hence on NoDepA, NoDepB and
|
|
// NoDepF)
|
|
void NoDepC_func();
|
|
void NoDepE_func();
|
|
|
|
void OneFunc()
|
|
{
|
|
NoDepC_func();
|
|
NoDepE_func();
|
|
}
|