UnityResolve: Solve C++ 17 return warnings

This commit is contained in:
WeiguangTWK 2026-03-31 15:16:36 +08:00
parent 1256b12d9a
commit cbc571cf7a
1 changed files with 2 additions and 2 deletions

View File

@ -565,10 +565,10 @@ public:
} }
catch (...) { catch (...) {
std::cout << funcName << " Invoke Error\n"; std::cout << funcName << " Invoke Error\n";
Return(); return Return();
} }
} }
Return(); return Return();
} }
inline static std::vector<Assembly*> assembly; inline static std::vector<Assembly*> assembly;