We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed11afe commit a5e98bbCopy full SHA for a5e98bb
Sources/_TestingInternals/Discovery.cpp
@@ -398,7 +398,7 @@ static void enumerateTypeMetadataSections(const SectionEnumerator& body) {
398
// modules do not support unloading, so we'll just not worry about them.)
399
using SWTSectionList = SWTVector<std::tuple<HMODULE, const void *, size_t>>;
400
SWTSectionList sectionList;
401
- for (DWORD i = 0; i < hModuleCount; i++) {
+ for (size_t i = 0; i < hModuleCount; i++) {
402
if (auto section = findSection(hModules[i], ".sw5tymd")) {
403
sectionList.emplace_back(hModules[i], section->first, section->second);
404
}
0 commit comments