MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / pointerTypeName

Function pointerTypeName

src/format.cpp:58–62  ·  view source on GitHub ↗

Pointer type string: "void*" or "StructName*"

Source from the content-addressed store, hash-verified

56
57// Pointer type string: "void*" or "StructName*"
58QString pointerTypeName(NodeKind kind, const QString& targetName) {
59 Q_UNUSED(kind);
60 QString target = targetName.isEmpty() ? QStringLiteral("void") : targetName;
61 return target + QStringLiteral("*");
62}
63
64// ── Value formatting ──
65

Callers 3

composeLeafFunction · 0.85
composeNodeFunction · 0.85
composeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected