Skip to content

Commit c3ae7ac

Browse files
committed
dev
1 parent df38451 commit c3ae7ac

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

.appveyor.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -101,21 +101,21 @@ for:
101101

102102
environment:
103103
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
119119
- job_name: Linux x86 64-bit
120120
appveyor_build_worker_image: *linux
121121
ARCH: x86_64

source/ReaFab.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -588,10 +588,9 @@ static bool Clear(const char* idStringInOptional)
588588
return true;
589589
}
590590

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);
595594
return true;
596595
}
597596
}

0 commit comments

Comments
 (0)