File tree 2 files changed +18
-19
lines changed
2 files changed +18
-19
lines changed Original file line number Diff line number Diff line change @@ -101,21 +101,21 @@ for:
101
101
102
102
environment :
103
103
matrix :
104
- # - job_name: Windows 64-bit
105
- # appveyor_build_worker_image: *windows
106
- # ARCH: x64
107
- # - job_name: Windows 32-bit
108
- # appveyor_build_worker_image: *windows
109
- # ARCH: x86
110
- # - job_name: macOS x86 64-bit
111
- # appveyor_build_worker_image: macos-mojave
112
- # ARCH: x86_64
113
- # - job_name: macOS x86 32-bit
114
- # appveyor_build_worker_image: macos-mojave
115
- # ARCH: i386
116
- # - job_name: macOS ARM 64-bit
117
- # appveyor_build_worker_image: macos
118
- # ARCH: arm64
104
+ - job_name : Windows 64-bit
105
+ appveyor_build_worker_image : *windows
106
+ ARCH : x64
107
+ - job_name : Windows 32-bit
108
+ appveyor_build_worker_image : *windows
109
+ ARCH : x86
110
+ - job_name : macOS x86 64-bit
111
+ appveyor_build_worker_image : macos-mojave
112
+ ARCH : x86_64
113
+ - job_name : macOS x86 32-bit
114
+ appveyor_build_worker_image : macos-mojave
115
+ ARCH : i386
116
+ - job_name : macOS ARM 64-bit
117
+ appveyor_build_worker_image : macos
118
+ ARCH : arm64
119
119
- job_name : Linux x86 64-bit
120
120
appveyor_build_worker_image : *linux
121
121
ARCH : x86_64
Original file line number Diff line number Diff line change @@ -588,10 +588,9 @@ static bool Clear(const char* idStringInOptional)
588
588
return true ;
589
589
}
590
590
591
- for (auto & [key, value] : controlMap) {
592
- (void )value;
593
- if (s.compare (key) == 0 ) {
594
- controlMap.erase (key);
591
+ for (auto & i : controlMap) {
592
+ if (s.compare (i.first ) == 0 ) {
593
+ controlMap.erase (i.first );
595
594
return true ;
596
595
}
597
596
}
You can’t perform that action at this time.
0 commit comments