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

Function class_module_name

src/engine/class.cpp:43–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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