mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
link lines, which affects external libraries pulled up from deep within the dependency tree. Fixed by preserving order everywhere.
8 lines
66 B
C
8 lines
66 B
C
void OneFunc();
|
|
|
|
void TwoFunc()
|
|
{
|
|
OneFunc();
|
|
NoDepZ_func();
|
|
}
|