Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Jan 5, 2022
1 parent df38451 commit c3ae7ac
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
30 changes: 15 additions & 15 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,21 +101,21 @@ for:

environment:
matrix:
# - job_name: Windows 64-bit
# appveyor_build_worker_image: *windows
# ARCH: x64
# - job_name: Windows 32-bit
# appveyor_build_worker_image: *windows
# ARCH: x86
# - job_name: macOS x86 64-bit
# appveyor_build_worker_image: macos-mojave
# ARCH: x86_64
# - job_name: macOS x86 32-bit
# appveyor_build_worker_image: macos-mojave
# ARCH: i386
# - job_name: macOS ARM 64-bit
# appveyor_build_worker_image: macos
# ARCH: arm64
- job_name: Windows 64-bit
appveyor_build_worker_image: *windows
ARCH: x64
- job_name: Windows 32-bit
appveyor_build_worker_image: *windows
ARCH: x86
- job_name: macOS x86 64-bit
appveyor_build_worker_image: macos-mojave
ARCH: x86_64
- job_name: macOS x86 32-bit
appveyor_build_worker_image: macos-mojave
ARCH: i386
- job_name: macOS ARM 64-bit
appveyor_build_worker_image: macos
ARCH: arm64
- job_name: Linux x86 64-bit
appveyor_build_worker_image: *linux
ARCH: x86_64
Expand Down
7 changes: 3 additions & 4 deletions source/ReaFab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,10 +588,9 @@ static bool Clear(const char* idStringInOptional)
return true;
}

for (auto& [key, value] : controlMap) {
(void)value;
if (s.compare(key) == 0) {
controlMap.erase(key);
for (auto& i : controlMap) {
if (s.compare(i.first) == 0) {
controlMap.erase(i.first);
return true;
}
}
Expand Down

0 comments on commit c3ae7ac

Please sign in to comment.