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

Function object_equal

src/engine/object.c:332–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330 */
331
332int object_equal( OBJECT * lhs, OBJECT * rhs )
333{
334 object_validate( lhs );
335 object_validate( rhs );
336#ifdef BJAM_NO_MEM_CACHE
337 return !strcmp( object_str( lhs ), object_str( rhs ) );
338#else
339 assert( ( lhs == rhs ) == !strcmp( object_str( lhs ), object_str( rhs ) ) );
340 return lhs == rhs;
341#endif
342}
343
344
345/*

Callers 15

hcacheFunction · 0.85
list_inFunction · 0.85
list_uniqueFunction · 0.85
make1listFunction · 0.85
var_getFunction · 0.85
addsettingsFunction · 0.85
make0Function · 0.85
dependGraphOutputFunction · 0.85
hash_searchFunction · 0.85
argument_compiler_addFunction · 0.85
function_bind_variablesFunction · 0.85

Calls 2

object_validateFunction · 0.85
object_strFunction · 0.85

Tested by

no test coverage detected