diff --git a/.github/workflows/clang-c++11.yml b/.github/workflows/clang-c++11.yml
index 3bfb863c2..2e243e80d 100644
--- a/.github/workflows/clang-c++11.yml
+++ b/.github/workflows/clang-c++11.yml
@@ -22,7 +22,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=11 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=11 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -44,7 +44,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=11 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=11 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/clang-c++14.yml b/.github/workflows/clang-c++14.yml
index 6ec45fdb9..7d2338d3e 100644
--- a/.github/workflows/clang-c++14.yml
+++ b/.github/workflows/clang-c++14.yml
@@ -22,7 +22,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=14 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=14 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -44,7 +44,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=14 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=14 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/clang-c++17.yml b/.github/workflows/clang-c++17.yml
index 789ce3be2..62afaf427 100644
--- a/.github/workflows/clang-c++17.yml
+++ b/.github/workflows/clang-c++17.yml
@@ -22,7 +22,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=17 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=17 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -44,7 +44,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=17 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=17 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/clang-c++20.yml b/.github/workflows/clang-c++20.yml
index 37d0b75b9..e403e5c0a 100644
--- a/.github/workflows/clang-c++20.yml
+++ b/.github/workflows/clang-c++20.yml
@@ -29,7 +29,7 @@ jobs:
export CC=clang-17
export CXX=clang++-17
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=20 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=20 ./
clang-17 --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -58,7 +58,7 @@ jobs:
export CC=clang-17
export CXX=clang++-17
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=20 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=20 ./
clang-17 --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -87,7 +87,7 @@ jobs:
export CC=clang-17
export CXX=clang++-17
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=20 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=20 ./
clang-17 --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -109,7 +109,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=20 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=20 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -131,7 +131,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=20 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=20 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -153,7 +153,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=20 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=20 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -175,7 +175,7 @@ jobs:
export CC=clang
export CXX=clang++
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
- cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=20 ./
+ cmake -D BUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=20 ./
clang --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/gcc-c++11.yml b/.github/workflows/gcc-c++11.yml
index 030d2482e..f4cea1b35 100644
--- a/.github/workflows/gcc-c++11.yml
+++ b/.github/workflows/gcc-c++11.yml
@@ -23,7 +23,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=11 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=11 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -46,7 +46,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=11 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=11 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/gcc-c++14.yml b/.github/workflows/gcc-c++14.yml
index 9220446fd..a24f9312e 100644
--- a/.github/workflows/gcc-c++14.yml
+++ b/.github/workflows/gcc-c++14.yml
@@ -22,7 +22,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=14 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=14 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -44,7 +44,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=14 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=14 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/gcc-c++17.yml b/.github/workflows/gcc-c++17.yml
index 34929496d..f16538ffa 100644
--- a/.github/workflows/gcc-c++17.yml
+++ b/.github/workflows/gcc-c++17.yml
@@ -22,7 +22,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=17 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=17 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -44,7 +44,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=17 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=17 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/gcc-c++20.yml b/.github/workflows/gcc-c++20.yml
index be28e824f..35de10cff 100644
--- a/.github/workflows/gcc-c++20.yml
+++ b/.github/workflows/gcc-c++20.yml
@@ -22,7 +22,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=20 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=20 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -44,7 +44,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=20 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=20 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -66,7 +66,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=20 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=20 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
@@ -88,7 +88,7 @@ jobs:
export ASAN_OPTIONS=alloc_dealloc_mismatch=0,detect_leaks=0
export CC=gcc
export CXX=g++
- cmake -DBUILD_TESTS=ON -DNO_STL=OON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=20 ./
+ cmake -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=20 ./
gcc --version
make -j $(getconf _NPROCESSORS_ONLN)
diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml
index 8324c507a..f910048a0 100644
--- a/.github/workflows/msvc.yml
+++ b/.github/workflows/msvc.yml
@@ -21,7 +21,7 @@ jobs:
- name: Build
run: |
- cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=20 ./
+ cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=20 ./
MSBuild.exe -version
MSBuild.exe .\etl.sln
@@ -42,7 +42,7 @@ jobs:
- name: Build
run: |
- cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=OFF -DETL_CXX_STANDARD=17 ./
+ cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=OFF -DETL_CXX_STANDARD=17 ./
MSBuild.exe -version
MSBuild.exe .\etl.sln
@@ -64,7 +64,7 @@ jobs:
- name: Build
run: |
- cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=17 ./
+ cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=OFF -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=17 ./
MSBuild.exe -version
MSBuild.exe .\etl.sln
@@ -86,7 +86,7 @@ jobs:
- name: Build
run: |
- cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03=ON -DETL_CXX_STANDARD=17 ./
+ cmake -G "Visual Studio 17 2022" -AWin32 -DBUILD_TESTS=ON -DNO_STL=ON -DETL_USE_TYPE_TRAITS_BUILTINS=OFF -DETL_USER_DEFINED_TYPE_TRAITS=OFF -DETL_FORCE_TEST_CPP03_IMPLEMENTATION=ON -DETL_CXX_STANDARD=17 ./
MSBuild.exe -version
MSBuild.exe .\etl.sln
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3c1aa1c9c..693910fe1 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -9,5 +9,5 @@ If your are considering creating a pull request, please observe the following:
There is a project file for VS2022 for C++14, 17, 20, and bash scripts that run the tests for C++11, 14, 17, 20 under Linux with GCC and Clang.
-If you are thinking of adding a new feature then raise this on the GitHub Issues page for disccussion as the maintainers and user of the ETL may have questions or suggestions.
-It is possible that the maintainer of the ETL or another contributor is already working on the same or related feature.
+If you are thinking of adding a new feature then raise this on the GitHub Issues page for discussion as the maintainers and user of the ETL may have questions or suggestions.
+It is possible that the maintainer of the ETL or another contributor is already working on the same or a related feature.
diff --git a/test/vs2019/etl.vcxproj b/test/vs2019/etl.vcxproj
index ca3db2abf..2a6518f02 100644
--- a/test/vs2019/etl.vcxproj
+++ b/test/vs2019/etl.vcxproj
@@ -1369,7 +1369,7 @@
Level2
Disabled
- WIN32;_DEBUG;_CONSOLE;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;ETL_FORCE_TEST_CPP03;%(PreprocessorDefinitions)
+ WIN32;_DEBUG;_CONSOLE;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;ETL_FORCE_TEST_CPP03_IMPLEMENTATION;%(PreprocessorDefinitions)
../../../unittest-cpp/;../../include;../../test
diff --git a/test/vs2022/etl.vcxproj b/test/vs2022/etl.vcxproj
index bfebb2b5d..d5953d718 100644
--- a/test/vs2022/etl.vcxproj
+++ b/test/vs2022/etl.vcxproj
@@ -49,12 +49,12 @@
Debug MSVC C++20 - Force C++03
x64
-
- Debug MSVC C++20 - Forve C++03 - No virtual messages
+
+ Debug MSVC C++20 - Force C++03 - No virtual messages
Win32
-
- Debug MSVC C++20 - Forve C++03 - No virtual messages
+
+ Debug MSVC C++20 - Force C++03 - No virtual messages
x64
@@ -150,7 +150,7 @@
Unicode
false
-
+
Application
true
v143
@@ -396,7 +396,7 @@
v143
Unicode
-
+
Application
true
v143
@@ -653,7 +653,7 @@
-
+
@@ -764,7 +764,7 @@
-
+
@@ -902,7 +902,7 @@
true
$(Configuration)\
-
+
true
true
$(Configuration)\
@@ -1089,7 +1089,7 @@
true
true
-
+
true
true
@@ -1351,7 +1351,7 @@
"$(OutDir)\etl.exe"
-
+
@@ -1655,7 +1655,7 @@
Level2
Disabled
- WIN32;_DEBUG;_CONSOLE;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;ETL_FORCE_TEST_CPP03;%(PreprocessorDefinitions)
+ WIN32;_DEBUG;_CONSOLE;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;ETL_FORCE_TEST_CPP03_IMPLEMENTATION;%(PreprocessorDefinitions)
../../../unittest-cpp/;../../include;../../test
@@ -2258,7 +2258,7 @@
$(OutDir)\etl.exe
-
+
@@ -3456,14 +3456,14 @@
true
true
true
- true
+ true
true
true
true
true
- true
+ true
true
true
true
@@ -3502,7 +3502,7 @@
true
true
true
- true
+ true
true
true
true
@@ -3541,7 +3541,7 @@
true
true
true
- true
+ true
true
true
true
@@ -3580,7 +3580,7 @@
true
true
true
- true
+ true
true
true
true
@@ -3672,7 +3672,7 @@
true
true
true
- true
+ true
true
@@ -3688,14 +3688,14 @@
true
true
true
- true
+ true
true
true
true
true
- true
+ true
true
true
true
@@ -3734,7 +3734,7 @@
true
true
true
- true
+ true
true
true
true
@@ -3773,7 +3773,7 @@
true
true
true
- true
+ true
true
true
true
@@ -3812,7 +3812,7 @@
true
true
true
- true
+ true
true
true
true
@@ -3862,7 +3862,7 @@
true
true
true
- true
+ true
true
@@ -3878,7 +3878,7 @@
true
true
true
- true
+ true
true
@@ -3894,7 +3894,7 @@
true
true
true
- true
+ true
true
@@ -3910,7 +3910,7 @@
true
true
true
- true
+ true
true
@@ -3926,7 +3926,7 @@
true
true
true
- true
+ true
true
@@ -3942,7 +3942,7 @@
true
true
true
- true
+ true
true
@@ -3958,7 +3958,7 @@
true
true
true
- true
+ true
true
@@ -3974,7 +3974,7 @@
true
true
true
- true
+ true
true
@@ -3990,7 +3990,7 @@
true
true
true
- true
+ true
true
true
true
@@ -4004,7 +4004,7 @@
true
true
true
- true
+ true
true
@@ -4020,7 +4020,7 @@
true
true
true
- true
+ true
true
true
true
@@ -4034,7 +4034,7 @@
true
true
true
- true
+ true
true
@@ -4050,7 +4050,7 @@
true
true
true
- true
+ true
true
@@ -4066,7 +4066,7 @@
true
true
true
- true
+ true
true
@@ -4082,7 +4082,7 @@
true
true
true
- true
+ true
true
@@ -4098,7 +4098,7 @@
true
true
true
- true
+ true
true
@@ -4114,7 +4114,7 @@
true
true
true
- true
+ true
true
@@ -4130,7 +4130,7 @@
true
true
true
- true
+ true
true
@@ -4146,7 +4146,7 @@
true
true
true
- true
+ true
true
true
true
@@ -4160,7 +4160,7 @@
true
true
true
- true
+ true
true
@@ -4176,7 +4176,7 @@
true
true
true
- true
+ true
true
@@ -4192,7 +4192,7 @@
true
true
true
- true
+ true
true
@@ -4208,7 +4208,7 @@
true
true
true
- true
+ true
true
@@ -4224,7 +4224,7 @@
true
true
true
- true
+ true
true
@@ -4240,7 +4240,7 @@
true
true
true
- true
+ true
true
@@ -4256,7 +4256,7 @@
true
true
true
- true
+ true
true
@@ -4272,7 +4272,7 @@
true
true
true
- true
+ true
true
@@ -4288,7 +4288,7 @@
true
true
true
- true
+ true
true
@@ -4304,7 +4304,7 @@
true
true
true
- true
+ true
true
@@ -4320,7 +4320,7 @@
true
true
true
- true
+ true
true
@@ -4336,7 +4336,7 @@
true
true
true
- true
+ true
true
@@ -4352,7 +4352,7 @@
true
true
true
- true
+ true
true
@@ -4368,7 +4368,7 @@
true
true
true
- true
+ true
true
@@ -4384,7 +4384,7 @@
true
true
true
- true
+ true
true
@@ -4400,7 +4400,7 @@
true
true
true
- true
+ true
true
@@ -4416,7 +4416,7 @@
true
true
true
- true
+ true
true
@@ -4432,7 +4432,7 @@
true
true
true
- true
+ true
true
@@ -4448,7 +4448,7 @@
true
true
true
- true
+ true
true
@@ -4464,7 +4464,7 @@
true
true
true
- true
+ true
true
@@ -4480,7 +4480,7 @@
true
true
true
- true
+ true
true
@@ -4496,7 +4496,7 @@
true
true
true
- true
+ true
true
@@ -4512,7 +4512,7 @@
true
true
true
- true
+ true
true
@@ -4528,7 +4528,7 @@
true
true
true
- true
+ true
true
@@ -4544,7 +4544,7 @@
true
true
true
- true
+ true
true
@@ -4560,7 +4560,7 @@
true
true
true
- true
+ true
true
true
true
@@ -4574,7 +4574,7 @@
true
true
true
- true
+ true
true
@@ -4590,7 +4590,7 @@
true
true
true
- true
+ true
true
@@ -4606,7 +4606,7 @@
true
true
true
- true
+ true
true
@@ -4622,7 +4622,7 @@
true
true
true
- true
+ true
true
@@ -4638,7 +4638,7 @@
true
true
true
- true
+ true
true
@@ -4654,7 +4654,7 @@
true
true
true
- true
+ true
true
@@ -4670,7 +4670,7 @@
true
true
true
- true
+ true
true
@@ -4686,7 +4686,7 @@
true
true
true
- true
+ true
true
@@ -4702,7 +4702,7 @@
true
true
true
- true
+ true
true
@@ -4718,7 +4718,7 @@
true
true
true
- true
+ true
true
@@ -4734,7 +4734,7 @@
true
true
true
- true
+ true
true
@@ -4750,7 +4750,7 @@
true
true
true
- true
+ true
true
@@ -4766,7 +4766,7 @@
true
true
true
- true
+ true
true
@@ -4782,7 +4782,7 @@
true
true
true
- true
+ true
true
@@ -4798,7 +4798,7 @@
true
true
true
- true
+ true
true
@@ -4814,7 +4814,7 @@
true
true
true
- true
+ true
true
@@ -4830,7 +4830,7 @@
true
true
true
- true
+ true
true
@@ -4846,7 +4846,7 @@
true
true
true
- true
+ true
true
@@ -4862,7 +4862,7 @@
true
true
true
- true
+ true
true
@@ -4878,7 +4878,7 @@
true
true
true
- true
+ true
true
@@ -4894,7 +4894,7 @@
true
true
true
- true
+ true
true
@@ -4910,7 +4910,7 @@
true
true
true
- true
+ true
true
@@ -4926,7 +4926,7 @@
true
true
true
- true
+ true
true
@@ -4942,7 +4942,7 @@
true
true
true
- true
+ true
true
@@ -4958,7 +4958,7 @@
true
true
true
- true
+ true
true
@@ -4974,7 +4974,7 @@
true
true
true
- true
+ true
true
@@ -4990,7 +4990,7 @@
true
true
true
- true
+ true
true
@@ -5006,7 +5006,7 @@
true
true
true
- true
+ true
true
@@ -5022,7 +5022,7 @@
true
true
true
- true
+ true
true
@@ -5038,7 +5038,7 @@
true
true
true
- true
+ true
true
@@ -5054,7 +5054,7 @@
true
true
true
- true
+ true
true
@@ -5070,7 +5070,7 @@
true
true
true
- true
+ true
true
@@ -5086,7 +5086,7 @@
true
true
true
- true
+ true
true
@@ -5102,7 +5102,7 @@
true
true
true
- true
+ true
true
@@ -5118,7 +5118,7 @@
true
true
true
- true
+ true
true
@@ -5134,7 +5134,7 @@
true
true
true
- true
+ true
true
@@ -5150,7 +5150,7 @@
true
true
true
- true
+ true
true
@@ -5166,7 +5166,7 @@
true
true
true
- true
+ true
true
@@ -5182,7 +5182,7 @@
true
true
true
- true
+ true
true
@@ -5198,7 +5198,7 @@
true
true
true
- true
+ true
true
@@ -5214,7 +5214,7 @@
true
true
true
- true
+ true
true
@@ -5230,7 +5230,7 @@
true
true
true
- true
+ true
true
@@ -5246,7 +5246,7 @@
true
true
true
- true
+ true
true
@@ -5262,7 +5262,7 @@
true
true
true
- true
+ true
true
@@ -5278,7 +5278,7 @@
true
true
true
- true
+ true
true
@@ -5294,7 +5294,7 @@
true
true
true
- true
+ true
true
@@ -5310,7 +5310,7 @@
true
true
true
- true
+ true
true
@@ -5326,7 +5326,7 @@
true
true
true
- true
+ true
true
@@ -5342,7 +5342,7 @@
true
true
true
- true
+ true
true
@@ -5358,7 +5358,7 @@
true
true
true
- true
+ true
true
@@ -5374,7 +5374,7 @@
true
true
true
- true
+ true
true
@@ -5390,7 +5390,7 @@
true
true
true
- true
+ true
true
@@ -5406,7 +5406,7 @@
true
true
true
- true
+ true
true
@@ -5422,7 +5422,7 @@
true
true
true
- true
+ true
true
@@ -5438,7 +5438,7 @@
true
true
true
- true
+ true
true
@@ -5454,7 +5454,7 @@
true
true
true
- true
+ true
true
@@ -5470,7 +5470,7 @@
true
true
true
- true
+ true
true
@@ -5486,7 +5486,7 @@
true
true
true
- true
+ true
true
@@ -5502,7 +5502,7 @@
true
true
true
- true
+ true
true
@@ -5518,7 +5518,7 @@
true
true
true
- true
+ true
true
@@ -5534,7 +5534,7 @@
true
true
true
- true
+ true
true
@@ -5550,7 +5550,7 @@
true
true
true
- true
+ true
true
@@ -5566,7 +5566,7 @@
true
true
true
- true
+ true
true
@@ -5582,7 +5582,7 @@
true
true
true
- true
+ true
true
@@ -5598,7 +5598,7 @@
true
true
true
- true
+ true
true
@@ -5614,7 +5614,7 @@
true
true
true
- true
+ true
true
@@ -5630,7 +5630,7 @@
true
true
true
- true
+ true
true
@@ -5646,7 +5646,7 @@
true
true
true
- true
+ true
true
@@ -5662,7 +5662,7 @@
true
true
true
- true
+ true
true
@@ -5678,7 +5678,7 @@
true
true
true
- true
+ true
true
@@ -5694,7 +5694,7 @@
true
true
true
- true
+ true
true
@@ -5710,7 +5710,7 @@
true
true
true
- true
+ true
true
@@ -5726,7 +5726,7 @@
true
true
true
- true
+ true
true
@@ -5742,7 +5742,7 @@
true
true
true
- true
+ true
true
@@ -5758,7 +5758,7 @@
true
true
true
- true
+ true
true
@@ -5774,7 +5774,7 @@
true
true
true
- true
+ true
true
@@ -5790,7 +5790,7 @@
true
true
true
- true
+ true
true
@@ -5806,7 +5806,7 @@
true
true
true
- true
+ true
true
@@ -5822,7 +5822,7 @@
true
true
true
- true
+ true
true
@@ -5838,7 +5838,7 @@
true
true
true
- true
+ true
true
@@ -5854,7 +5854,7 @@
true
true
true
- true
+ true
true
@@ -5870,7 +5870,7 @@
true
true
true
- true
+ true
true
@@ -5886,7 +5886,7 @@
true
true
true
- true
+ true
true
@@ -5902,7 +5902,7 @@
true
true
true
- true
+ true
true
true
true
@@ -5916,7 +5916,7 @@
true
true
true
- true
+ true
true
@@ -5932,7 +5932,7 @@
true
true
true
- true
+ true
true
@@ -5948,7 +5948,7 @@
true
true
true
- true
+ true
true
@@ -5964,7 +5964,7 @@
true
true
true
- true
+ true
true
@@ -5980,7 +5980,7 @@
true
true
true
- true
+ true
true
@@ -5996,7 +5996,7 @@
true
true
true
- true
+ true
true
@@ -6012,7 +6012,7 @@
true
true
true
- true
+ true
true
@@ -6028,7 +6028,7 @@
true
true
true
- true
+ true
true
@@ -6044,7 +6044,7 @@
true
true
true
- true
+ true
true
@@ -6060,7 +6060,7 @@
true
true
true
- true
+ true
true
@@ -6076,7 +6076,7 @@
true
true
true
- true
+ true
true
@@ -6092,7 +6092,7 @@
true
true
true
- true
+ true
true
@@ -6108,7 +6108,7 @@
true
true
true
- true
+ true
true
@@ -6124,7 +6124,7 @@
true
true
true
- true
+ true
true
@@ -6140,7 +6140,7 @@
true
true
true
- true
+ true
true
@@ -6156,7 +6156,7 @@
true
true
true
- true
+ true
true
@@ -6172,7 +6172,7 @@
true
true
true
- true
+ true
true
@@ -6188,7 +6188,7 @@
true
true
true
- true
+ true
true
@@ -6204,7 +6204,7 @@
true
true
true
- true
+ true
true
@@ -6220,7 +6220,7 @@
true
true
true
- true
+ true
true
@@ -6236,7 +6236,7 @@
true
true
true
- true
+ true
true
@@ -6252,7 +6252,7 @@
true
true
true
- true
+ true
true
@@ -6268,7 +6268,7 @@
true
true
true
- true
+ true
true
@@ -6284,7 +6284,7 @@
true
true
true
- true
+ true
true
@@ -6300,7 +6300,7 @@
true
true
true
- true
+ true
true
@@ -6316,7 +6316,7 @@
true
true
true
- true
+ true
true
@@ -6332,7 +6332,7 @@
true
true
true
- true
+ true
true
@@ -6348,7 +6348,7 @@
true
true
true
- true
+ true
true
@@ -6364,7 +6364,7 @@
true
true
true
- true
+ true
true
@@ -6380,7 +6380,7 @@
true
true
true
- true
+ true
true
@@ -6396,7 +6396,7 @@
true
true
true
- true
+ true
true
@@ -6412,7 +6412,7 @@
true
true
true
- true
+ true
true
@@ -6428,7 +6428,7 @@
true
true
true
- true
+ true
true
@@ -6444,7 +6444,7 @@
true
true
true
- true
+ true
true
@@ -6460,7 +6460,7 @@
true
true
true
- true
+ true
true
@@ -6476,7 +6476,7 @@
true
true
true
- true
+ true
true
@@ -6492,7 +6492,7 @@
true
true
true
- true
+ true
true
@@ -6508,7 +6508,7 @@
true
true
true
- true
+ true
true
@@ -6524,7 +6524,7 @@
true
true
true
- true
+ true
true
@@ -6540,7 +6540,7 @@
true
true
true
- true
+ true
true
@@ -6556,7 +6556,7 @@
true
true
true
- true
+ true
true
@@ -6572,7 +6572,7 @@
true
true
true
- true
+ true
true
@@ -6588,7 +6588,7 @@
true
true
true
- true
+ true
true
@@ -6604,7 +6604,7 @@
true
true
true
- true
+ true
true
@@ -6620,7 +6620,7 @@
true
true
true
- true
+ true
true
@@ -6636,7 +6636,7 @@
true
true
true
- true
+ true
true
@@ -6652,7 +6652,7 @@
true
true
true
- true
+ true
true
@@ -6668,7 +6668,7 @@
true
true
true
- true
+ true
true
@@ -6684,7 +6684,7 @@
true
true
true
- true
+ true
true
@@ -6700,7 +6700,7 @@
true
true
true
- true
+ true
true
@@ -6716,7 +6716,7 @@
true
true
true
- true
+ true
true
@@ -6732,7 +6732,7 @@
true
true
true
- true
+ true
true
@@ -6748,7 +6748,7 @@
true
true
true
- true
+ true
true
@@ -6764,7 +6764,7 @@
true
true
true
- true
+ true
true
@@ -6780,7 +6780,7 @@
true
true
true
- true
+ true
true
@@ -6796,7 +6796,7 @@
true
true
true
- true
+ true
true
@@ -6812,7 +6812,7 @@
true
true
true
- true
+ true
true
@@ -6828,7 +6828,7 @@
true
true
true
- true
+ true
true
@@ -6844,7 +6844,7 @@
true
true
true
- true
+ true
true
@@ -6860,7 +6860,7 @@
true
true
true
- true
+ true
true
@@ -6876,7 +6876,7 @@
true
true
true
- true
+ true
true
@@ -6892,7 +6892,7 @@
true
true
true
- true
+ true
true
@@ -6908,7 +6908,7 @@
true
true
true
- true
+ true
true
@@ -6924,7 +6924,7 @@
true
true
true
- true
+ true
true
@@ -6940,7 +6940,7 @@
true
true
true
- true
+ true
true
@@ -6956,7 +6956,7 @@
true
true
true
- true
+ true
true
@@ -6972,7 +6972,7 @@
true
true
true
- true
+ true
true
@@ -6988,7 +6988,7 @@
true
true
true
- true
+ true
true
@@ -7004,7 +7004,7 @@
true
true
true
- true
+ true
true
@@ -7020,7 +7020,7 @@
true
true
true
- true
+ true
true
@@ -7036,7 +7036,7 @@
true
true
true
- true
+ true
true
@@ -7052,7 +7052,7 @@
true
true
true
- true
+ true
true
@@ -7068,7 +7068,7 @@
true
true
true
- true
+ true
true
@@ -7084,7 +7084,7 @@
true
true
true
- true
+ true
true
@@ -7100,7 +7100,7 @@
true
true
true
- true
+ true
true
@@ -7116,7 +7116,7 @@
true
true
true
- true
+ true
true
@@ -7132,7 +7132,7 @@
true
true
true
- true
+ true
true
@@ -7148,7 +7148,7 @@
true
true
true
- true
+ true
true
@@ -7164,7 +7164,7 @@
true
true
true
- true
+ true
true
@@ -7180,7 +7180,7 @@
true
true
true
- true
+ true
true
@@ -7196,7 +7196,7 @@
true
true
true
- true
+ true
true
@@ -7212,7 +7212,7 @@
true
true
true
- true
+ true
true
@@ -7228,7 +7228,7 @@
true
true
true
- true
+ true
true
@@ -7244,7 +7244,7 @@
true
true
true
- true
+ true
true
@@ -7260,7 +7260,7 @@
true
true
true
- true
+ true
true
@@ -7276,7 +7276,7 @@
true
true
true
- true
+ true
true
@@ -7292,7 +7292,7 @@
true
true
true
- true
+ true
true
@@ -7308,7 +7308,7 @@
true
true
true
- true
+ true
true
@@ -7324,7 +7324,7 @@
true
true
true
- true
+ true
true
@@ -7340,7 +7340,7 @@
true
true
true
- true
+ true
true
@@ -7356,7 +7356,7 @@
true
true
true
- true
+ true
true
true
true
@@ -7370,7 +7370,7 @@
true
true
true
- true
+ true
true
@@ -7386,7 +7386,7 @@
true
true
true
- true
+ true
true
@@ -7402,7 +7402,7 @@
true
true
true
- true
+ true
true
@@ -7418,7 +7418,7 @@
true
true
true
- true
+ true
true
@@ -7434,7 +7434,7 @@
true
true
true
- true
+ true
true
@@ -7450,7 +7450,7 @@
true
true
true
- true
+ true
true
@@ -7466,7 +7466,7 @@
true
true
true
- true
+ true
true
@@ -7482,7 +7482,7 @@
true
true
true
- true
+ true
true
@@ -7498,7 +7498,7 @@
true
true
true
- true
+ true
true
@@ -7514,7 +7514,7 @@
true
true
true
- true
+ true
true
@@ -7530,7 +7530,7 @@
true
true
true
- true
+ true
true
@@ -7546,7 +7546,7 @@
true
true
true
- true
+ true
true
@@ -7562,7 +7562,7 @@
true
true
true
- true
+ true
true
@@ -7578,7 +7578,7 @@
true
true
true
- true
+ true
true
@@ -7594,7 +7594,7 @@
true
true
true
- true
+ true
true
@@ -7610,7 +7610,7 @@
true
true
true
- true
+ true
true
@@ -7626,7 +7626,7 @@
true
true
true
- true
+ true
true
true
true
@@ -7640,7 +7640,7 @@
true
true
true
- true
+ true
true
@@ -7656,7 +7656,7 @@
true
true
true
- true
+ true
true
@@ -7672,7 +7672,7 @@
true
true
true
- true
+ true
true
@@ -7688,7 +7688,7 @@
true
true
true
- true
+ true
true
@@ -7704,7 +7704,7 @@
true
true
true
- true
+ true
true
@@ -7720,7 +7720,7 @@
true
true
true
- true
+ true
true
@@ -7736,7 +7736,7 @@
true
true
true
- true
+ true
true
@@ -7752,7 +7752,7 @@
true
true
true
- true
+ true
true
@@ -7768,7 +7768,7 @@
true
true
true
- true
+ true
true
@@ -7784,7 +7784,7 @@
true
true
true
- true
+ true
true
@@ -7800,7 +7800,7 @@
true
true
true
- true
+ true
true
@@ -7816,7 +7816,7 @@
true
true
true
- true
+ true
true
@@ -7832,7 +7832,7 @@
true
true
true
- true
+ true
true
@@ -7848,7 +7848,7 @@
true
true
true
- true
+ true
true
@@ -7880,7 +7880,7 @@
true
true
true
- true
+ true
true
@@ -7896,7 +7896,7 @@
true
true
true
- true
+ true
true
@@ -7912,7 +7912,7 @@
true
true
true
- true
+ true
true
@@ -7928,7 +7928,7 @@
true
true
true
- true
+ true
true
@@ -7944,7 +7944,7 @@
true
true
true
- true
+ true
true
@@ -7960,7 +7960,7 @@
true
true
true
- true
+ true
true
@@ -7976,7 +7976,7 @@
true
true
true
- true
+ true
true
@@ -7992,7 +7992,7 @@
true
true
true
- true
+ true
true
@@ -8008,7 +8008,7 @@
true
true
true
- true
+ true
true
@@ -8024,7 +8024,7 @@
true
true
true
- true
+ true
true
@@ -8040,7 +8040,7 @@
true
true
true
- true
+ true
true
@@ -8056,7 +8056,7 @@
true
true
true
- true
+ true
true
@@ -8072,7 +8072,7 @@
true
true
true
- true
+ true
true
@@ -8088,7 +8088,7 @@
true
true
true
- true
+ true
true
@@ -8104,7 +8104,7 @@
true
true
true
- true
+ true
true
@@ -8120,7 +8120,7 @@
true
true
true
- true
+ true
true
@@ -8136,7 +8136,7 @@
true
true
true
- true
+ true
true
@@ -8152,7 +8152,7 @@
true
true
true
- true
+ true
true
@@ -8168,7 +8168,7 @@
true
true
true
- true
+ true
true
@@ -8184,7 +8184,7 @@
true
true
true
- true
+ true
true
@@ -8200,7 +8200,7 @@
true
true
true
- true
+ true
true
@@ -8216,7 +8216,7 @@
true
true
true
- true
+ true
true
@@ -8232,7 +8232,7 @@
true
true
true
- true
+ true
true
@@ -8248,7 +8248,7 @@
true
true
true
- true
+ true
true
@@ -8264,7 +8264,7 @@
true
true
true
- true
+ true
true
@@ -8280,7 +8280,7 @@
true
true
true
- true
+ true
true
@@ -8296,7 +8296,7 @@
true
true
true
- true
+ true
true
@@ -8312,7 +8312,7 @@
true
true
true
- true
+ true
true
@@ -8328,7 +8328,7 @@
true
true
true
- true
+ true
true
@@ -8344,7 +8344,7 @@
true
true
true
- true
+ true
true
@@ -8360,7 +8360,7 @@
true
true
true
- true
+ true
true
@@ -8376,7 +8376,7 @@
true
true
true
- true
+ true
true
@@ -8392,7 +8392,7 @@
true
true
true
- true
+ true
@@ -8415,7 +8415,7 @@
false
false
false
- false
+ false
@@ -8570,7 +8570,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8611,7 +8611,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8671,7 +8671,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8712,7 +8712,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8767,7 +8767,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8808,7 +8808,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8853,7 +8853,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8894,7 +8894,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8939,7 +8939,7 @@
false
false
false
- false
+ false
false
false
false
@@ -8980,7 +8980,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9025,7 +9025,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9066,7 +9066,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9116,7 +9116,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9157,7 +9157,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9206,7 +9206,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9247,7 +9247,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9304,7 +9304,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9345,7 +9345,7 @@
false
false
false
- false
+ false
false
false
false
@@ -9603,14 +9603,14 @@
true
true
true
- true
+ true
true
true
true
true
- true
+ true
true
true
true
@@ -9649,7 +9649,7 @@
true
true
true
- true
+ true
true
true
true
@@ -9688,7 +9688,7 @@
true
true
true
- true
+ true
true
true
true
@@ -9727,7 +9727,7 @@
true
true
true
- true
+ true
true
true
true
@@ -9781,7 +9781,7 @@
true
true
true
- true
+ true
@@ -9798,4 +9798,4 @@
-
\ No newline at end of file
+