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

Function class_module_stat

src/engine/modules.cpp:181–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179
180
181static void class_module_stat( struct hashstats * stats, OBJECT * module, const char * name )
182{
183 if ( stats->item_size )
184 {
185 string id[ 1 ];
186 string_new( id );
187 string_append( id, object_str( module ) );
188 string_append( id, " object " );
189 string_append( id, name );
190
191 hashstats_print( stats, id->value );
192
193 string_free( id );
194 }
195}
196
197
198static void stat_module( void * xmodule, void * data )

Callers 1

print_class_statsFunction · 0.85

Calls 5

string_newFunction · 0.85
string_appendFunction · 0.85
object_strFunction · 0.85
hashstats_printFunction · 0.85
string_freeFunction · 0.85

Tested by

no test coverage detected