| 369 | |
| 370 | template<typename T> |
| 371 | inline void dictAdd(IdentityDictionary<T>& dict, T key) { |
| 372 | dict[key] = key; |
| 373 | } |
| 374 | |
| 375 | static void Engine_storeTerminalModulesIDs(std::vector<TerminalModule*> terminalModules, IdentityDictionary<int64_t>& terminalModulesIDs) { |
| 376 | for (TerminalModule* terminalModule : terminalModules) |
no outgoing calls
no test coverage detected