MCPcopy Create free account
hub / github.com/BohemiaInteractive/CWR / CatType

Function CatType

engine/Evaluator/express.cpp:3132–3146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3130}
3131
3132static void CatType(RString& a, RString b)
3133{
3134 if (a.GetLength() <= 0)
3135 {
3136 a = b;
3137 }
3138 else if (b.GetLength() <= 0)
3139 {
3140 ;
3141 }
3142 else
3143 {
3144 a = a + RString(",") + b;
3145 }
3146}
3147
3148RString GameState::GetTypeName(GameType type) const
3149{

Callers 1

GetTypeNameMethod · 0.70

Calls 2

RStringClass · 0.50
GetLengthMethod · 0.45

Tested by

no test coverage detected