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

Function class_module_name

v2/engine/class.c:42–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40
41
42static OBJECT * class_module_name( OBJECT * declared_name )
43{
44 string name[ 1 ];
45 OBJECT * result;
46
47 string_new( name );
48 string_append( name, "class@" );
49 string_append( name, object_str( declared_name ) );
50
51 result = object_new( name->value );
52 string_free( name );
53
54 return result;
55}
56
57
58struct import_base_data

Callers 2

import_base_rulesFunction · 0.85
make_class_moduleFunction · 0.85

Calls 5

string_newFunction · 0.85
string_appendFunction · 0.85
object_strFunction · 0.85
object_newFunction · 0.85
string_freeFunction · 0.85

Tested by

no test coverage detected