MCPcopy Create free account
hub / github.com/boostorg/build / targets_equal

Function targets_equal

v2/engine/make1.c:1377–1385  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1375}
1376
1377static int targets_equal( TARGETS * l1, TARGETS * l2 )
1378{
1379 for ( ; l1 && l2; l1 = l1->next, l2 = l2->next )
1380 {
1381 if ( l1->target != l2->target )
1382 return 0;
1383 }
1384 return !l1 && !l2;
1385}
1386
1387
1388#ifdef OPT_SEMAPHORE

Callers 1

make1cmdsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected