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

Function string_set_init

src/engine/object.cpp:157–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155
156
157static void string_set_init( string_set * set )
158{
159 set->size = 0;
160 set->num = 4;
161 set->data = (struct hash_item * *)BJAM_MALLOC( set->num * sizeof( struct hash_item * ) );
162 memset( set->data, 0, set->num * sizeof( struct hash_item * ) );
163}
164
165
166static void string_set_done( string_set * set )

Callers 1

object_new_rangeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected