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

Function object_equal

src/engine/object.cpp:331–341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 15

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

Calls 2

object_validateFunction · 0.85
object_strFunction · 0.85

Tested by

no test coverage detected