diff --git a/OSBindings/Mac/Clock SignalTests/AtariStaticAnalyserTests.mm b/OSBindings/Mac/Clock SignalTests/AtariStaticAnalyserTests.mm index 849c03fcf..c05aef2ba 100644 --- a/OSBindings/Mac/Clock SignalTests/AtariStaticAnalyserTests.mm +++ b/OSBindings/Mac/Clock SignalTests/AtariStaticAnalyserTests.mm @@ -594,7 +594,7 @@ static NSDictionary *romRecordsBySHA1 = @{ for(int c = 0; c < CC_SHA1_DIGEST_LENGTH; c++) [sha1 appendFormat:@"%02x", sha1Bytes[c]]; // get an analysis of the file - TargetList targets = Analyser::Static::GetTargets([fullPath UTF8String]); + auto targets = Analyser::Static::GetTargets([fullPath UTF8String]); // grab the ROM record AtariROMRecord *romRecord = romRecordsBySHA1[sha1]; diff --git a/OSBindings/Mac/Clock SignalTests/MSXStaticAnalyserTests.mm b/OSBindings/Mac/Clock SignalTests/MSXStaticAnalyserTests.mm index bdf529e0f..f04690449 100644 --- a/OSBindings/Mac/Clock SignalTests/MSXStaticAnalyserTests.mm +++ b/OSBindings/Mac/Clock SignalTests/MSXStaticAnalyserTests.mm @@ -212,7 +212,7 @@ static NSDictionary *romRecordsBySHA1 = @{ for(int c = 0; c < CC_SHA1_DIGEST_LENGTH; c++) [sha1 appendFormat:@"%02x", sha1Bytes[c]]; // get an analysis of the file - TargetList targets = Analyser::Static::GetTargets([fullPath UTF8String]); + auto targets = Analyser::Static::GetTargets([fullPath UTF8String]); // grab the ROM record MSXROMRecord *romRecord = romRecordsBySHA1[sha1];