Alias to improve clarity and reduce code size (if compiler chooses not to inline; due to how parameter defaults work):
| 3072 | |
| 3073 | // Alias to improve clarity and reduce code size (if compiler chooses not to inline; due to how parameter defaults work): |
| 3074 | Var *FindGlobalVar(LPCTSTR aVarName, size_t aVarNameLength = 0) { return FindVar(aVarName, aVarNameLength, FINDVAR_GLOBAL); } |
| 3075 | // For maintainability. |
| 3076 | VarList *GlobalVars() { return &mVars; } |
| 3077 |
no outgoing calls
no test coverage detected