quasardb 3.13.6__cp38-cp38-win32.whl → 3.13.7__cp38-cp38-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of quasardb might be problematic. Click here for more details.
- quasardb/CMakeFiles/generate.stamp.depend +1 -1
- quasardb/CMakeLists.txt +43 -22
- quasardb/INSTALL.vcxproj +11 -11
- quasardb/INSTALL.vcxproj.filters +2 -2
- quasardb/__init__.py +1 -1
- quasardb/add_boost_test.cmake +43 -0
- quasardb/batch_column.hpp +1 -1
- quasardb/batch_inserter.hpp +1 -1
- quasardb/blob.hpp +1 -1
- quasardb/cluster.hpp +42 -17
- quasardb/cmake_install.cmake +4 -4
- quasardb/concepts.hpp +30 -16
- quasardb/continuous.hpp +1 -1
- quasardb/convert/array.hpp +61 -7
- quasardb/convert/point.hpp +16 -11
- quasardb/convert/range.hpp +19 -25
- quasardb/convert/unicode.hpp +457 -149
- quasardb/convert/value.hpp +87 -18
- quasardb/convert.hpp +1 -1
- quasardb/date/ALL_BUILD.vcxproj +21 -21
- quasardb/date/ALL_BUILD.vcxproj.filters +1 -1
- quasardb/date/CMakeFiles/generate.stamp.depend +1 -1
- quasardb/date/INSTALL.vcxproj +11 -11
- quasardb/date/INSTALL.vcxproj.filters +2 -2
- quasardb/date/cmake_install.cmake +6 -6
- quasardb/date/date.sln +31 -31
- quasardb/date/dateTargets.cmake +2 -2
- quasardb/detail/qdb_resource.hpp +6 -6
- quasardb/detail/ts_column.hpp +1 -1
- quasardb/direct_blob.hpp +1 -1
- quasardb/direct_handle.hpp +1 -1
- quasardb/direct_integer.hpp +1 -1
- quasardb/{version.cpp → double.hpp} +46 -28
- quasardb/entry.hpp +1 -1
- quasardb/error.hpp +14 -10
- quasardb/handle.hpp +1 -1
- quasardb/integer.hpp +1 -1
- quasardb/logger.hpp +1 -1
- quasardb/masked_array.hpp +1 -1
- quasardb/module.cpp +73 -0
- quasardb/module.hpp +24 -0
- quasardb/node.hpp +16 -11
- quasardb/numpy/__init__.py +76 -7
- quasardb/numpy.hpp +1 -1
- quasardb/options.hpp +31 -9
- quasardb/pandas/__init__.py +1 -1
- quasardb/perf.hpp +6 -6
- quasardb/pinned_writer.hpp +1 -5
- quasardb/pybind11/ALL_BUILD.vcxproj +25 -25
- quasardb/pybind11/ALL_BUILD.vcxproj.filters +1 -1
- quasardb/pybind11/CMakeFiles/generate.stamp.depend +4 -4
- quasardb/pybind11/INSTALL.vcxproj +11 -11
- quasardb/pybind11/INSTALL.vcxproj.filters +2 -2
- quasardb/pybind11/cmake_install.cmake +1 -1
- quasardb/pybind11/pybind11.sln +31 -31
- quasardb/pytypes.hpp +2 -2
- quasardb/qdb_api.dll +0 -0
- quasardb/quasardb.pyd +0 -0
- quasardb/query.cpp +3 -3
- quasardb/query.hpp +1 -1
- quasardb/range-v3/ALL_BUILD.vcxproj +25 -25
- quasardb/range-v3/ALL_BUILD.vcxproj.filters +1 -1
- quasardb/range-v3/CMakeFiles/generate.stamp.depend +6 -6
- quasardb/range-v3/INSTALL.vcxproj +11 -11
- quasardb/range-v3/INSTALL.vcxproj.filters +2 -2
- quasardb/range-v3/Range-v3.sln +39 -39
- quasardb/range-v3/cmake_install.cmake +6 -6
- quasardb/range-v3/range-v3-config.cmake +3 -3
- quasardb/range-v3/range.v3.headers.vcxproj +338 -338
- quasardb/range-v3/range.v3.headers.vcxproj.filters +315 -315
- quasardb/reader/ts_row.hpp +1 -1
- quasardb/reader/ts_value.hpp +1 -1
- quasardb/string.hpp +160 -0
- quasardb/table.hpp +1 -1
- quasardb/table_reader.hpp +1 -1
- quasardb/tag.hpp +1 -1
- quasardb/timestamp.hpp +97 -0
- quasardb/utils.hpp +1 -1
- {quasardb-3.13.6.dist-info → quasardb-3.13.7.dist-info}/LICENSE.md +1 -1
- {quasardb-3.13.6.dist-info → quasardb-3.13.7.dist-info}/METADATA +1 -1
- quasardb-3.13.7.dist-info/RECORD +114 -0
- {quasardb-3.13.6.dist-info → quasardb-3.13.7.dist-info}/WHEEL +1 -1
- quasardb/qdb_client.cpp +0 -67
- quasardb/version.hpp +0 -43
- quasardb-3.13.6.dist-info/RECORD +0 -111
- {quasardb-3.13.6.dist-info → quasardb-3.13.7.dist-info}/top_level.txt +0 -0
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
</ProjectConfiguration>
|
|
23
23
|
</ItemGroup>
|
|
24
24
|
<PropertyGroup Label="Globals">
|
|
25
|
-
<ProjectGuid>{
|
|
25
|
+
<ProjectGuid>{47D5DBC7-AAD0-3970-A4EE-8C662E35925D}</ProjectGuid>
|
|
26
26
|
<Keyword>Win32Proj</Keyword>
|
|
27
|
-
<WindowsTargetPlatformVersion>10.0.
|
|
27
|
+
<WindowsTargetPlatformVersion>10.0.20348.0</WindowsTargetPlatformVersion>
|
|
28
28
|
<Platform>Win32</Platform>
|
|
29
29
|
<ProjectName>range.v3.headers</ProjectName>
|
|
30
30
|
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
</PropertyGroup>
|
|
67
67
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
68
68
|
<Midl>
|
|
69
|
-
<AdditionalIncludeDirectories>
|
|
69
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\qdb\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\date\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
70
70
|
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
71
71
|
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
72
72
|
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
</ItemDefinitionGroup>
|
|
77
77
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
78
78
|
<Midl>
|
|
79
|
-
<AdditionalIncludeDirectories>
|
|
79
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\qdb\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\date\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
80
80
|
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
81
81
|
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
82
82
|
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
</ItemDefinitionGroup>
|
|
87
87
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">
|
|
88
88
|
<Midl>
|
|
89
|
-
<AdditionalIncludeDirectories>
|
|
89
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\qdb\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\date\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
90
90
|
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
91
91
|
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
92
92
|
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
</ItemDefinitionGroup>
|
|
97
97
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">
|
|
98
98
|
<Midl>
|
|
99
|
-
<AdditionalIncludeDirectories>
|
|
99
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\qdb\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\date\include;C:\TeamCity\work\283bde3fda0d76e7\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
100
100
|
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
101
101
|
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
102
102
|
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
@@ -105,11 +105,11 @@
|
|
|
105
105
|
</Midl>
|
|
106
106
|
</ItemDefinitionGroup>
|
|
107
107
|
<ItemGroup>
|
|
108
|
-
<CustomBuild Include="
|
|
108
|
+
<CustomBuild Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\CMakeLists.txt">
|
|
109
109
|
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
110
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Building Custom Rule
|
|
110
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Building Custom Rule C:/TeamCity/work/283bde3fda0d76e7/thirdparty/range-v3/CMakeLists.txt</Message>
|
|
111
111
|
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">setlocal
|
|
112
|
-
"C:\Program Files\CMake\bin\cmake.exe" -
|
|
112
|
+
"C:\Program Files\CMake\bin\cmake.exe" -SC:/TeamCity/work/283bde3fda0d76e7/quasardb -BC:/TeamCity/work/283bde3fda0d76e7/build/temp.win32-cpython-38/Release --check-stamp-file C:/TeamCity/work/283bde3fda0d76e7/build/lib.win32-cpython-38/quasardb/range-v3/CMakeFiles/generate.stamp
|
|
113
113
|
if %errorlevel% neq 0 goto :cmEnd
|
|
114
114
|
:cmEnd
|
|
115
115
|
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
@@ -117,12 +117,12 @@ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
|
117
117
|
exit /b %1
|
|
118
118
|
:cmDone
|
|
119
119
|
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
120
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;
|
|
121
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
120
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\Version.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_env.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_flags.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_options.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\version.hpp.in;%(AdditionalInputs)</AdditionalInputs>
|
|
121
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\TeamCity\work\283bde3fda0d76e7\build\lib.win32-cpython-38\quasardb\range-v3\CMakeFiles\generate.stamp</Outputs>
|
|
122
122
|
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</LinkObjects>
|
|
123
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Building Custom Rule
|
|
123
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Building Custom Rule C:/TeamCity/work/283bde3fda0d76e7/thirdparty/range-v3/CMakeLists.txt</Message>
|
|
124
124
|
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">setlocal
|
|
125
|
-
"C:\Program Files\CMake\bin\cmake.exe" -
|
|
125
|
+
"C:\Program Files\CMake\bin\cmake.exe" -SC:/TeamCity/work/283bde3fda0d76e7/quasardb -BC:/TeamCity/work/283bde3fda0d76e7/build/temp.win32-cpython-38/Release --check-stamp-file C:/TeamCity/work/283bde3fda0d76e7/build/lib.win32-cpython-38/quasardb/range-v3/CMakeFiles/generate.stamp
|
|
126
126
|
if %errorlevel% neq 0 goto :cmEnd
|
|
127
127
|
:cmEnd
|
|
128
128
|
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
@@ -130,12 +130,12 @@ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
|
130
130
|
exit /b %1
|
|
131
131
|
:cmDone
|
|
132
132
|
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
133
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;
|
|
134
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
133
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\Version.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_env.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_flags.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_options.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\version.hpp.in;%(AdditionalInputs)</AdditionalInputs>
|
|
134
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\TeamCity\work\283bde3fda0d76e7\build\lib.win32-cpython-38\quasardb\range-v3\CMakeFiles\generate.stamp</Outputs>
|
|
135
135
|
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkObjects>
|
|
136
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">Building Custom Rule
|
|
136
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">Building Custom Rule C:/TeamCity/work/283bde3fda0d76e7/thirdparty/range-v3/CMakeLists.txt</Message>
|
|
137
137
|
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">setlocal
|
|
138
|
-
"C:\Program Files\CMake\bin\cmake.exe" -
|
|
138
|
+
"C:\Program Files\CMake\bin\cmake.exe" -SC:/TeamCity/work/283bde3fda0d76e7/quasardb -BC:/TeamCity/work/283bde3fda0d76e7/build/temp.win32-cpython-38/Release --check-stamp-file C:/TeamCity/work/283bde3fda0d76e7/build/lib.win32-cpython-38/quasardb/range-v3/CMakeFiles/generate.stamp
|
|
139
139
|
if %errorlevel% neq 0 goto :cmEnd
|
|
140
140
|
:cmEnd
|
|
141
141
|
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
@@ -143,12 +143,12 @@ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
|
143
143
|
exit /b %1
|
|
144
144
|
:cmDone
|
|
145
145
|
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
146
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;
|
|
147
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">
|
|
146
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\Version.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_env.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_flags.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_options.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\version.hpp.in;%(AdditionalInputs)</AdditionalInputs>
|
|
147
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">C:\TeamCity\work\283bde3fda0d76e7\build\lib.win32-cpython-38\quasardb\range-v3\CMakeFiles\generate.stamp</Outputs>
|
|
148
148
|
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">false</LinkObjects>
|
|
149
|
-
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">Building Custom Rule
|
|
149
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">Building Custom Rule C:/TeamCity/work/283bde3fda0d76e7/thirdparty/range-v3/CMakeLists.txt</Message>
|
|
150
150
|
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">setlocal
|
|
151
|
-
"C:\Program Files\CMake\bin\cmake.exe" -
|
|
151
|
+
"C:\Program Files\CMake\bin\cmake.exe" -SC:/TeamCity/work/283bde3fda0d76e7/quasardb -BC:/TeamCity/work/283bde3fda0d76e7/build/temp.win32-cpython-38/Release --check-stamp-file C:/TeamCity/work/283bde3fda0d76e7/build/lib.win32-cpython-38/quasardb/range-v3/CMakeFiles/generate.stamp
|
|
152
152
|
if %errorlevel% neq 0 goto :cmEnd
|
|
153
153
|
:cmEnd
|
|
154
154
|
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
@@ -156,642 +156,642 @@ endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
|
156
156
|
exit /b %1
|
|
157
157
|
:cmDone
|
|
158
158
|
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
159
|
-
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;
|
|
160
|
-
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">
|
|
159
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">C:\Program Files\CMake\share\cmake-3.24\Modules\BasicConfigVersion-ExactVersion.cmake.in;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakeDependentOption.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CMakePackageConfigHelpers.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXCompilerFlag.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\CheckCXXSourceCompiles.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindDoxygen.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindGit.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageHandleStandardArgs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\FindPackageMessage.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\GNUInstallDirs.cmake;C:\Program Files\CMake\share\cmake-3.24\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\Version.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_env.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_flags.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\cmake\ranges_options.cmake;C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\version.hpp.in;%(AdditionalInputs)</AdditionalInputs>
|
|
160
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">C:\TeamCity\work\283bde3fda0d76e7\build\lib.win32-cpython-38\quasardb\range-v3\CMakeFiles\generate.stamp</Outputs>
|
|
161
161
|
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">false</LinkObjects>
|
|
162
162
|
</CustomBuild>
|
|
163
163
|
</ItemGroup>
|
|
164
164
|
<ItemGroup>
|
|
165
|
-
<None Include="
|
|
165
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\concepts\compare.hpp">
|
|
166
166
|
</None>
|
|
167
|
-
<None Include="
|
|
167
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\concepts\concepts.hpp">
|
|
168
168
|
</None>
|
|
169
|
-
<None Include="
|
|
169
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\concepts\swap.hpp">
|
|
170
170
|
</None>
|
|
171
|
-
<None Include="
|
|
171
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\concepts\type_traits.hpp">
|
|
172
172
|
</None>
|
|
173
|
-
<None Include="
|
|
173
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\meta\meta.hpp">
|
|
174
174
|
</None>
|
|
175
|
-
<None Include="
|
|
175
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\meta\meta_fwd.hpp">
|
|
176
176
|
</None>
|
|
177
|
-
<None Include="
|
|
177
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action.hpp">
|
|
178
178
|
</None>
|
|
179
|
-
<None Include="
|
|
179
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\action.hpp">
|
|
180
180
|
</None>
|
|
181
|
-
<None Include="
|
|
181
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\adjacent_remove_if.hpp">
|
|
182
182
|
</None>
|
|
183
|
-
<None Include="
|
|
183
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\concepts.hpp">
|
|
184
184
|
</None>
|
|
185
|
-
<None Include="
|
|
185
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\drop.hpp">
|
|
186
186
|
</None>
|
|
187
|
-
<None Include="
|
|
187
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\drop_while.hpp">
|
|
188
188
|
</None>
|
|
189
|
-
<None Include="
|
|
189
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\erase.hpp">
|
|
190
190
|
</None>
|
|
191
|
-
<None Include="
|
|
191
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\insert.hpp">
|
|
192
192
|
</None>
|
|
193
|
-
<None Include="
|
|
193
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\join.hpp">
|
|
194
194
|
</None>
|
|
195
|
-
<None Include="
|
|
195
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\push_back.hpp">
|
|
196
196
|
</None>
|
|
197
|
-
<None Include="
|
|
197
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\push_front.hpp">
|
|
198
198
|
</None>
|
|
199
|
-
<None Include="
|
|
199
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\remove.hpp">
|
|
200
200
|
</None>
|
|
201
|
-
<None Include="
|
|
201
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\remove_if.hpp">
|
|
202
202
|
</None>
|
|
203
|
-
<None Include="
|
|
203
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\reverse.hpp">
|
|
204
204
|
</None>
|
|
205
|
-
<None Include="
|
|
205
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\shuffle.hpp">
|
|
206
206
|
</None>
|
|
207
|
-
<None Include="
|
|
207
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\slice.hpp">
|
|
208
208
|
</None>
|
|
209
|
-
<None Include="
|
|
209
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\sort.hpp">
|
|
210
210
|
</None>
|
|
211
|
-
<None Include="
|
|
211
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\split.hpp">
|
|
212
212
|
</None>
|
|
213
|
-
<None Include="
|
|
213
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\split_when.hpp">
|
|
214
214
|
</None>
|
|
215
|
-
<None Include="
|
|
215
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\stable_sort.hpp">
|
|
216
216
|
</None>
|
|
217
|
-
<None Include="
|
|
217
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\stride.hpp">
|
|
218
218
|
</None>
|
|
219
|
-
<None Include="
|
|
219
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\take.hpp">
|
|
220
220
|
</None>
|
|
221
|
-
<None Include="
|
|
221
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\take_while.hpp">
|
|
222
222
|
</None>
|
|
223
|
-
<None Include="
|
|
223
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\transform.hpp">
|
|
224
224
|
</None>
|
|
225
|
-
<None Include="
|
|
225
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\unique.hpp">
|
|
226
226
|
</None>
|
|
227
|
-
<None Include="
|
|
227
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\action\unstable_remove_if.hpp">
|
|
228
228
|
</None>
|
|
229
|
-
<None Include="
|
|
229
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm.hpp">
|
|
230
230
|
</None>
|
|
231
|
-
<None Include="
|
|
231
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\adjacent_find.hpp">
|
|
232
232
|
</None>
|
|
233
|
-
<None Include="
|
|
233
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\adjacent_remove_if.hpp">
|
|
234
234
|
</None>
|
|
235
|
-
<None Include="
|
|
235
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\all_of.hpp">
|
|
236
236
|
</None>
|
|
237
|
-
<None Include="
|
|
237
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\any_of.hpp">
|
|
238
238
|
</None>
|
|
239
|
-
<None Include="
|
|
239
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\equal_range_n.hpp">
|
|
240
240
|
</None>
|
|
241
|
-
<None Include="
|
|
241
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\lower_bound_n.hpp">
|
|
242
242
|
</None>
|
|
243
|
-
<None Include="
|
|
243
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\merge_n.hpp">
|
|
244
244
|
</None>
|
|
245
|
-
<None Include="
|
|
245
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\merge_n_with_buffer.hpp">
|
|
246
246
|
</None>
|
|
247
|
-
<None Include="
|
|
247
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\partition_point_n.hpp">
|
|
248
248
|
</None>
|
|
249
|
-
<None Include="
|
|
249
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\sort_n_with_buffer.hpp">
|
|
250
250
|
</None>
|
|
251
|
-
<None Include="
|
|
251
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\aux_\upper_bound_n.hpp">
|
|
252
252
|
</None>
|
|
253
|
-
<None Include="
|
|
253
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\binary_search.hpp">
|
|
254
254
|
</None>
|
|
255
|
-
<None Include="
|
|
255
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\contains.hpp">
|
|
256
256
|
</None>
|
|
257
|
-
<None Include="
|
|
257
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\copy.hpp">
|
|
258
258
|
</None>
|
|
259
|
-
<None Include="
|
|
259
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\copy_backward.hpp">
|
|
260
260
|
</None>
|
|
261
|
-
<None Include="
|
|
261
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\copy_if.hpp">
|
|
262
262
|
</None>
|
|
263
|
-
<None Include="
|
|
263
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\copy_n.hpp">
|
|
264
264
|
</None>
|
|
265
|
-
<None Include="
|
|
265
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\count.hpp">
|
|
266
266
|
</None>
|
|
267
|
-
<None Include="
|
|
267
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\count_if.hpp">
|
|
268
268
|
</None>
|
|
269
|
-
<None Include="
|
|
269
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\ends_with.hpp">
|
|
270
270
|
</None>
|
|
271
|
-
<None Include="
|
|
271
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\equal.hpp">
|
|
272
272
|
</None>
|
|
273
|
-
<None Include="
|
|
273
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\equal_range.hpp">
|
|
274
274
|
</None>
|
|
275
|
-
<None Include="
|
|
275
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\fill.hpp">
|
|
276
276
|
</None>
|
|
277
|
-
<None Include="
|
|
277
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\fill_n.hpp">
|
|
278
278
|
</None>
|
|
279
|
-
<None Include="
|
|
279
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\find.hpp">
|
|
280
280
|
</None>
|
|
281
|
-
<None Include="
|
|
281
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\find_end.hpp">
|
|
282
282
|
</None>
|
|
283
|
-
<None Include="
|
|
283
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\find_first_of.hpp">
|
|
284
284
|
</None>
|
|
285
|
-
<None Include="
|
|
285
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\find_if.hpp">
|
|
286
286
|
</None>
|
|
287
|
-
<None Include="
|
|
287
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\find_if_not.hpp">
|
|
288
288
|
</None>
|
|
289
|
-
<None Include="
|
|
289
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\for_each.hpp">
|
|
290
290
|
</None>
|
|
291
|
-
<None Include="
|
|
291
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\for_each_n.hpp">
|
|
292
292
|
</None>
|
|
293
|
-
<None Include="
|
|
293
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\generate.hpp">
|
|
294
294
|
</None>
|
|
295
|
-
<None Include="
|
|
295
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\generate_n.hpp">
|
|
296
296
|
</None>
|
|
297
|
-
<None Include="
|
|
297
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\heap_algorithm.hpp">
|
|
298
298
|
</None>
|
|
299
|
-
<None Include="
|
|
299
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\inplace_merge.hpp">
|
|
300
300
|
</None>
|
|
301
|
-
<None Include="
|
|
301
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\is_partitioned.hpp">
|
|
302
302
|
</None>
|
|
303
|
-
<None Include="
|
|
303
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\is_sorted.hpp">
|
|
304
304
|
</None>
|
|
305
|
-
<None Include="
|
|
305
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\is_sorted_until.hpp">
|
|
306
306
|
</None>
|
|
307
|
-
<None Include="
|
|
307
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\lexicographical_compare.hpp">
|
|
308
308
|
</None>
|
|
309
|
-
<None Include="
|
|
309
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\lower_bound.hpp">
|
|
310
310
|
</None>
|
|
311
|
-
<None Include="
|
|
311
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\max.hpp">
|
|
312
312
|
</None>
|
|
313
|
-
<None Include="
|
|
313
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\max_element.hpp">
|
|
314
314
|
</None>
|
|
315
|
-
<None Include="
|
|
315
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\merge.hpp">
|
|
316
316
|
</None>
|
|
317
|
-
<None Include="
|
|
317
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\min.hpp">
|
|
318
318
|
</None>
|
|
319
|
-
<None Include="
|
|
319
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\min_element.hpp">
|
|
320
320
|
</None>
|
|
321
|
-
<None Include="
|
|
321
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\minmax.hpp">
|
|
322
322
|
</None>
|
|
323
|
-
<None Include="
|
|
323
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\minmax_element.hpp">
|
|
324
324
|
</None>
|
|
325
|
-
<None Include="
|
|
325
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\mismatch.hpp">
|
|
326
326
|
</None>
|
|
327
|
-
<None Include="
|
|
327
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\move.hpp">
|
|
328
328
|
</None>
|
|
329
|
-
<None Include="
|
|
329
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\move_backward.hpp">
|
|
330
330
|
</None>
|
|
331
|
-
<None Include="
|
|
331
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\none_of.hpp">
|
|
332
332
|
</None>
|
|
333
|
-
<None Include="
|
|
333
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\nth_element.hpp">
|
|
334
334
|
</None>
|
|
335
|
-
<None Include="
|
|
335
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\partial_sort.hpp">
|
|
336
336
|
</None>
|
|
337
|
-
<None Include="
|
|
337
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\partial_sort_copy.hpp">
|
|
338
338
|
</None>
|
|
339
|
-
<None Include="
|
|
339
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\partition.hpp">
|
|
340
340
|
</None>
|
|
341
|
-
<None Include="
|
|
341
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\partition_copy.hpp">
|
|
342
342
|
</None>
|
|
343
|
-
<None Include="
|
|
343
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\partition_point.hpp">
|
|
344
344
|
</None>
|
|
345
|
-
<None Include="
|
|
345
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\permutation.hpp">
|
|
346
346
|
</None>
|
|
347
|
-
<None Include="
|
|
347
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\remove.hpp">
|
|
348
348
|
</None>
|
|
349
|
-
<None Include="
|
|
349
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\remove_copy.hpp">
|
|
350
350
|
</None>
|
|
351
|
-
<None Include="
|
|
351
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\remove_copy_if.hpp">
|
|
352
352
|
</None>
|
|
353
|
-
<None Include="
|
|
353
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\remove_if.hpp">
|
|
354
354
|
</None>
|
|
355
|
-
<None Include="
|
|
355
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\replace.hpp">
|
|
356
356
|
</None>
|
|
357
|
-
<None Include="
|
|
357
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\replace_copy.hpp">
|
|
358
358
|
</None>
|
|
359
|
-
<None Include="
|
|
359
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\replace_copy_if.hpp">
|
|
360
360
|
</None>
|
|
361
|
-
<None Include="
|
|
361
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\replace_if.hpp">
|
|
362
362
|
</None>
|
|
363
|
-
<None Include="
|
|
363
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\result_types.hpp">
|
|
364
364
|
</None>
|
|
365
|
-
<None Include="
|
|
365
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\reverse.hpp">
|
|
366
366
|
</None>
|
|
367
|
-
<None Include="
|
|
367
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\reverse_copy.hpp">
|
|
368
368
|
</None>
|
|
369
|
-
<None Include="
|
|
369
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\rotate.hpp">
|
|
370
370
|
</None>
|
|
371
|
-
<None Include="
|
|
371
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\rotate_copy.hpp">
|
|
372
372
|
</None>
|
|
373
|
-
<None Include="
|
|
373
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\sample.hpp">
|
|
374
374
|
</None>
|
|
375
|
-
<None Include="
|
|
375
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\search.hpp">
|
|
376
376
|
</None>
|
|
377
|
-
<None Include="
|
|
377
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\search_n.hpp">
|
|
378
378
|
</None>
|
|
379
|
-
<None Include="
|
|
379
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\set_algorithm.hpp">
|
|
380
380
|
</None>
|
|
381
|
-
<None Include="
|
|
381
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\shuffle.hpp">
|
|
382
382
|
</None>
|
|
383
|
-
<None Include="
|
|
383
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\sort.hpp">
|
|
384
384
|
</None>
|
|
385
|
-
<None Include="
|
|
385
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\stable_partition.hpp">
|
|
386
386
|
</None>
|
|
387
|
-
<None Include="
|
|
387
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\stable_sort.hpp">
|
|
388
388
|
</None>
|
|
389
|
-
<None Include="
|
|
389
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\starts_with.hpp">
|
|
390
390
|
</None>
|
|
391
|
-
<None Include="
|
|
391
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\swap_ranges.hpp">
|
|
392
392
|
</None>
|
|
393
|
-
<None Include="
|
|
393
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\tagspec.hpp">
|
|
394
394
|
</None>
|
|
395
|
-
<None Include="
|
|
395
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\transform.hpp">
|
|
396
396
|
</None>
|
|
397
|
-
<None Include="
|
|
397
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\unique.hpp">
|
|
398
398
|
</None>
|
|
399
|
-
<None Include="
|
|
399
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\unique_copy.hpp">
|
|
400
400
|
</None>
|
|
401
|
-
<None Include="
|
|
401
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\unstable_remove_if.hpp">
|
|
402
402
|
</None>
|
|
403
|
-
<None Include="
|
|
403
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\algorithm\upper_bound.hpp">
|
|
404
404
|
</None>
|
|
405
|
-
<None Include="
|
|
405
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\all.hpp">
|
|
406
406
|
</None>
|
|
407
|
-
<None Include="
|
|
407
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\at.hpp">
|
|
408
408
|
</None>
|
|
409
|
-
<None Include="
|
|
409
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\back.hpp">
|
|
410
410
|
</None>
|
|
411
|
-
<None Include="
|
|
411
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\begin_end.hpp">
|
|
412
412
|
</None>
|
|
413
|
-
<None Include="
|
|
413
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\compare.hpp">
|
|
414
414
|
</None>
|
|
415
|
-
<None Include="
|
|
415
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\core.hpp">
|
|
416
416
|
</None>
|
|
417
|
-
<None Include="
|
|
417
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\data.hpp">
|
|
418
418
|
</None>
|
|
419
|
-
<None Include="
|
|
419
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\adl_get.hpp">
|
|
420
420
|
</None>
|
|
421
|
-
<None Include="
|
|
421
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\config.hpp">
|
|
422
422
|
</None>
|
|
423
|
-
<None Include="
|
|
423
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\epilogue.hpp">
|
|
424
424
|
</None>
|
|
425
|
-
<None Include="
|
|
425
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\prologue.hpp">
|
|
426
426
|
</None>
|
|
427
|
-
<None Include="
|
|
427
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\range_access.hpp">
|
|
428
428
|
</None>
|
|
429
|
-
<None Include="
|
|
429
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\satisfy_boost_range.hpp">
|
|
430
430
|
</None>
|
|
431
|
-
<None Include="
|
|
431
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\variant.hpp">
|
|
432
432
|
</None>
|
|
433
|
-
<None Include="
|
|
433
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\detail\with_braced_init_args.hpp">
|
|
434
434
|
</None>
|
|
435
|
-
<None Include="
|
|
435
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\distance.hpp">
|
|
436
436
|
</None>
|
|
437
|
-
<None Include="
|
|
437
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\empty.hpp">
|
|
438
438
|
</None>
|
|
439
|
-
<None Include="
|
|
439
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\experimental\utility\generator.hpp">
|
|
440
440
|
</None>
|
|
441
|
-
<None Include="
|
|
441
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\experimental\view\shared.hpp">
|
|
442
442
|
</None>
|
|
443
|
-
<None Include="
|
|
443
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\front.hpp">
|
|
444
444
|
</None>
|
|
445
|
-
<None Include="
|
|
445
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional.hpp">
|
|
446
446
|
</None>
|
|
447
|
-
<None Include="
|
|
447
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\arithmetic.hpp">
|
|
448
448
|
</None>
|
|
449
|
-
<None Include="
|
|
449
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\bind.hpp">
|
|
450
450
|
</None>
|
|
451
|
-
<None Include="
|
|
451
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\bind_back.hpp">
|
|
452
452
|
</None>
|
|
453
|
-
<None Include="
|
|
453
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\comparisons.hpp">
|
|
454
454
|
</None>
|
|
455
|
-
<None Include="
|
|
455
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\compose.hpp">
|
|
456
456
|
</None>
|
|
457
|
-
<None Include="
|
|
457
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\concepts.hpp">
|
|
458
458
|
</None>
|
|
459
|
-
<None Include="
|
|
459
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\identity.hpp">
|
|
460
460
|
</None>
|
|
461
|
-
<None Include="
|
|
461
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\indirect.hpp">
|
|
462
462
|
</None>
|
|
463
|
-
<None Include="
|
|
463
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\invoke.hpp">
|
|
464
464
|
</None>
|
|
465
|
-
<None Include="
|
|
465
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\not_fn.hpp">
|
|
466
466
|
</None>
|
|
467
|
-
<None Include="
|
|
467
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\on.hpp">
|
|
468
468
|
</None>
|
|
469
|
-
<None Include="
|
|
469
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\overload.hpp">
|
|
470
470
|
</None>
|
|
471
|
-
<None Include="
|
|
471
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\pipeable.hpp">
|
|
472
472
|
</None>
|
|
473
|
-
<None Include="
|
|
473
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\functional\reference_wrapper.hpp">
|
|
474
474
|
</None>
|
|
475
|
-
<None Include="
|
|
475
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\getlines.hpp">
|
|
476
476
|
</None>
|
|
477
|
-
<None Include="
|
|
477
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\index.hpp">
|
|
478
478
|
</None>
|
|
479
|
-
<None Include="
|
|
479
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\istream_range.hpp">
|
|
480
480
|
</None>
|
|
481
|
-
<None Include="
|
|
481
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator.hpp">
|
|
482
482
|
</None>
|
|
483
|
-
<None Include="
|
|
483
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\access.hpp">
|
|
484
484
|
</None>
|
|
485
|
-
<None Include="
|
|
485
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\basic_iterator.hpp">
|
|
486
486
|
</None>
|
|
487
|
-
<None Include="
|
|
487
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\common_iterator.hpp">
|
|
488
488
|
</None>
|
|
489
|
-
<None Include="
|
|
489
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\concepts.hpp">
|
|
490
490
|
</None>
|
|
491
|
-
<None Include="
|
|
491
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\counted_iterator.hpp">
|
|
492
492
|
</None>
|
|
493
|
-
<None Include="
|
|
493
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\default_sentinel.hpp">
|
|
494
494
|
</None>
|
|
495
|
-
<None Include="
|
|
495
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\diffmax_t.hpp">
|
|
496
496
|
</None>
|
|
497
|
-
<None Include="
|
|
497
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\insert_iterators.hpp">
|
|
498
498
|
</None>
|
|
499
|
-
<None Include="
|
|
499
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\move_iterators.hpp">
|
|
500
500
|
</None>
|
|
501
|
-
<None Include="
|
|
501
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\operations.hpp">
|
|
502
502
|
</None>
|
|
503
|
-
<None Include="
|
|
503
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\reverse_iterator.hpp">
|
|
504
504
|
</None>
|
|
505
|
-
<None Include="
|
|
505
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\stream_iterators.hpp">
|
|
506
506
|
</None>
|
|
507
|
-
<None Include="
|
|
507
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\traits.hpp">
|
|
508
508
|
</None>
|
|
509
|
-
<None Include="
|
|
509
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator\unreachable_sentinel.hpp">
|
|
510
510
|
</None>
|
|
511
|
-
<None Include="
|
|
511
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\iterator_range.hpp">
|
|
512
512
|
</None>
|
|
513
|
-
<None Include="
|
|
513
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\numeric.hpp">
|
|
514
514
|
</None>
|
|
515
|
-
<None Include="
|
|
515
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\numeric\accumulate.hpp">
|
|
516
516
|
</None>
|
|
517
|
-
<None Include="
|
|
517
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\numeric\adjacent_difference.hpp">
|
|
518
518
|
</None>
|
|
519
|
-
<None Include="
|
|
519
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\numeric\inner_product.hpp">
|
|
520
520
|
</None>
|
|
521
|
-
<None Include="
|
|
521
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\numeric\iota.hpp">
|
|
522
522
|
</None>
|
|
523
|
-
<None Include="
|
|
523
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\numeric\partial_sum.hpp">
|
|
524
524
|
</None>
|
|
525
|
-
<None Include="
|
|
525
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range.hpp">
|
|
526
526
|
</None>
|
|
527
|
-
<None Include="
|
|
527
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\access.hpp">
|
|
528
528
|
</None>
|
|
529
|
-
<None Include="
|
|
529
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\concepts.hpp">
|
|
530
530
|
</None>
|
|
531
|
-
<None Include="
|
|
531
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\conversion.hpp">
|
|
532
532
|
</None>
|
|
533
|
-
<None Include="
|
|
533
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\dangling.hpp">
|
|
534
534
|
</None>
|
|
535
|
-
<None Include="
|
|
535
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\operations.hpp">
|
|
536
536
|
</None>
|
|
537
|
-
<None Include="
|
|
537
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\primitives.hpp">
|
|
538
538
|
</None>
|
|
539
|
-
<None Include="
|
|
539
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range\traits.hpp">
|
|
540
540
|
</None>
|
|
541
|
-
<None Include="
|
|
541
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range_access.hpp">
|
|
542
542
|
</None>
|
|
543
|
-
<None Include="
|
|
543
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range_concepts.hpp">
|
|
544
544
|
</None>
|
|
545
|
-
<None Include="
|
|
545
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range_for.hpp">
|
|
546
546
|
</None>
|
|
547
|
-
<None Include="
|
|
547
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range_fwd.hpp">
|
|
548
548
|
</None>
|
|
549
|
-
<None Include="
|
|
549
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\range_traits.hpp">
|
|
550
550
|
</None>
|
|
551
|
-
<None Include="
|
|
551
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\size.hpp">
|
|
552
552
|
</None>
|
|
553
|
-
<None Include="
|
|
553
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\span.hpp">
|
|
554
554
|
</None>
|
|
555
|
-
<None Include="
|
|
555
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\to_container.hpp">
|
|
556
556
|
</None>
|
|
557
|
-
<None Include="
|
|
557
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility.hpp">
|
|
558
558
|
</None>
|
|
559
|
-
<None Include="
|
|
559
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\addressof.hpp">
|
|
560
560
|
</None>
|
|
561
|
-
<None Include="
|
|
561
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\any.hpp">
|
|
562
562
|
</None>
|
|
563
|
-
<None Include="
|
|
563
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\associated_types.hpp">
|
|
564
564
|
</None>
|
|
565
|
-
<None Include="
|
|
565
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\basic_iterator.hpp">
|
|
566
566
|
</None>
|
|
567
|
-
<None Include="
|
|
567
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\box.hpp">
|
|
568
568
|
</None>
|
|
569
|
-
<None Include="
|
|
569
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\common_iterator.hpp">
|
|
570
570
|
</None>
|
|
571
|
-
<None Include="
|
|
571
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\common_tuple.hpp">
|
|
572
572
|
</None>
|
|
573
|
-
<None Include="
|
|
573
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\common_type.hpp">
|
|
574
574
|
</None>
|
|
575
|
-
<None Include="
|
|
575
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\compressed_pair.hpp">
|
|
576
576
|
</None>
|
|
577
|
-
<None Include="
|
|
577
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\concepts.hpp">
|
|
578
578
|
</None>
|
|
579
|
-
<None Include="
|
|
579
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\copy.hpp">
|
|
580
580
|
</None>
|
|
581
|
-
<None Include="
|
|
581
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\counted_iterator.hpp">
|
|
582
582
|
</None>
|
|
583
|
-
<None Include="
|
|
583
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\dangling.hpp">
|
|
584
584
|
</None>
|
|
585
|
-
<None Include="
|
|
585
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\functional.hpp">
|
|
586
586
|
</None>
|
|
587
|
-
<None Include="
|
|
587
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\get.hpp">
|
|
588
588
|
</None>
|
|
589
|
-
<None Include="
|
|
589
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\in_place.hpp">
|
|
590
590
|
</None>
|
|
591
|
-
<None Include="
|
|
591
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\infinity.hpp">
|
|
592
592
|
</None>
|
|
593
|
-
<None Include="
|
|
593
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\invoke.hpp">
|
|
594
594
|
</None>
|
|
595
|
-
<None Include="
|
|
595
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\iterator.hpp">
|
|
596
596
|
</None>
|
|
597
|
-
<None Include="
|
|
597
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\iterator_concepts.hpp">
|
|
598
598
|
</None>
|
|
599
|
-
<None Include="
|
|
599
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\iterator_traits.hpp">
|
|
600
600
|
</None>
|
|
601
|
-
<None Include="
|
|
601
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\memory.hpp">
|
|
602
602
|
</None>
|
|
603
|
-
<None Include="
|
|
603
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\move.hpp">
|
|
604
604
|
</None>
|
|
605
|
-
<None Include="
|
|
605
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\nullptr_v.hpp">
|
|
606
606
|
</None>
|
|
607
|
-
<None Include="
|
|
607
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\optional.hpp">
|
|
608
608
|
</None>
|
|
609
|
-
<None Include="
|
|
609
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\polymorphic_cast.hpp">
|
|
610
610
|
</None>
|
|
611
|
-
<None Include="
|
|
611
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\random.hpp">
|
|
612
612
|
</None>
|
|
613
|
-
<None Include="
|
|
613
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\scope_exit.hpp">
|
|
614
614
|
</None>
|
|
615
|
-
<None Include="
|
|
615
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\semiregular.hpp">
|
|
616
616
|
</None>
|
|
617
|
-
<None Include="
|
|
617
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\semiregular_box.hpp">
|
|
618
618
|
</None>
|
|
619
|
-
<None Include="
|
|
619
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\static_const.hpp">
|
|
620
620
|
</None>
|
|
621
|
-
<None Include="
|
|
621
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\swap.hpp">
|
|
622
622
|
</None>
|
|
623
|
-
<None Include="
|
|
623
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\tagged_pair.hpp">
|
|
624
624
|
</None>
|
|
625
|
-
<None Include="
|
|
625
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\tagged_tuple.hpp">
|
|
626
626
|
</None>
|
|
627
|
-
<None Include="
|
|
627
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\tuple_algorithm.hpp">
|
|
628
628
|
</None>
|
|
629
|
-
<None Include="
|
|
629
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\unreachable.hpp">
|
|
630
630
|
</None>
|
|
631
|
-
<None Include="
|
|
631
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\utility\variant.hpp">
|
|
632
632
|
</None>
|
|
633
|
-
<None Include="
|
|
633
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\version.hpp">
|
|
634
634
|
</None>
|
|
635
|
-
<None Include="
|
|
635
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view.hpp">
|
|
636
636
|
</None>
|
|
637
|
-
<None Include="
|
|
637
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\adaptor.hpp">
|
|
638
638
|
</None>
|
|
639
|
-
<None Include="
|
|
639
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\addressof.hpp">
|
|
640
640
|
</None>
|
|
641
|
-
<None Include="
|
|
641
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\adjacent_filter.hpp">
|
|
642
642
|
</None>
|
|
643
|
-
<None Include="
|
|
643
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\adjacent_remove_if.hpp">
|
|
644
644
|
</None>
|
|
645
|
-
<None Include="
|
|
645
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\all.hpp">
|
|
646
646
|
</None>
|
|
647
|
-
<None Include="
|
|
647
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\any_view.hpp">
|
|
648
648
|
</None>
|
|
649
|
-
<None Include="
|
|
649
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\bounded.hpp">
|
|
650
650
|
</None>
|
|
651
|
-
<None Include="
|
|
651
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\c_str.hpp">
|
|
652
652
|
</None>
|
|
653
|
-
<None Include="
|
|
653
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\cache1.hpp">
|
|
654
654
|
</None>
|
|
655
|
-
<None Include="
|
|
655
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\cartesian_product.hpp">
|
|
656
656
|
</None>
|
|
657
|
-
<None Include="
|
|
657
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\chunk.hpp">
|
|
658
658
|
</None>
|
|
659
|
-
<None Include="
|
|
659
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\common.hpp">
|
|
660
660
|
</None>
|
|
661
|
-
<None Include="
|
|
661
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\concat.hpp">
|
|
662
662
|
</None>
|
|
663
|
-
<None Include="
|
|
663
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\const.hpp">
|
|
664
664
|
</None>
|
|
665
|
-
<None Include="
|
|
665
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\counted.hpp">
|
|
666
666
|
</None>
|
|
667
|
-
<None Include="
|
|
667
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\cycle.hpp">
|
|
668
668
|
</None>
|
|
669
|
-
<None Include="
|
|
669
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\delimit.hpp">
|
|
670
670
|
</None>
|
|
671
|
-
<None Include="
|
|
671
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\drop.hpp">
|
|
672
672
|
</None>
|
|
673
|
-
<None Include="
|
|
673
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\drop_exactly.hpp">
|
|
674
674
|
</None>
|
|
675
|
-
<None Include="
|
|
675
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\drop_last.hpp">
|
|
676
676
|
</None>
|
|
677
|
-
<None Include="
|
|
677
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\drop_while.hpp">
|
|
678
678
|
</None>
|
|
679
|
-
<None Include="
|
|
679
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\empty.hpp">
|
|
680
680
|
</None>
|
|
681
|
-
<None Include="
|
|
681
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\enumerate.hpp">
|
|
682
682
|
</None>
|
|
683
|
-
<None Include="
|
|
683
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\exclusive_scan.hpp">
|
|
684
684
|
</None>
|
|
685
|
-
<None Include="
|
|
685
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\facade.hpp">
|
|
686
686
|
</None>
|
|
687
|
-
<None Include="
|
|
687
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\filter.hpp">
|
|
688
688
|
</None>
|
|
689
|
-
<None Include="
|
|
689
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\for_each.hpp">
|
|
690
690
|
</None>
|
|
691
|
-
<None Include="
|
|
691
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\generate.hpp">
|
|
692
692
|
</None>
|
|
693
|
-
<None Include="
|
|
693
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\generate_n.hpp">
|
|
694
694
|
</None>
|
|
695
|
-
<None Include="
|
|
695
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\getlines.hpp">
|
|
696
696
|
</None>
|
|
697
|
-
<None Include="
|
|
697
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\group_by.hpp">
|
|
698
698
|
</None>
|
|
699
|
-
<None Include="
|
|
699
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\indices.hpp">
|
|
700
700
|
</None>
|
|
701
|
-
<None Include="
|
|
701
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\indirect.hpp">
|
|
702
702
|
</None>
|
|
703
|
-
<None Include="
|
|
703
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\interface.hpp">
|
|
704
704
|
</None>
|
|
705
|
-
<None Include="
|
|
705
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\intersperse.hpp">
|
|
706
706
|
</None>
|
|
707
|
-
<None Include="
|
|
707
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\iota.hpp">
|
|
708
708
|
</None>
|
|
709
|
-
<None Include="
|
|
709
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\istream.hpp">
|
|
710
710
|
</None>
|
|
711
|
-
<None Include="
|
|
711
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\join.hpp">
|
|
712
712
|
</None>
|
|
713
|
-
<None Include="
|
|
713
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\linear_distribute.hpp">
|
|
714
714
|
</None>
|
|
715
|
-
<None Include="
|
|
715
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\map.hpp">
|
|
716
716
|
</None>
|
|
717
|
-
<None Include="
|
|
717
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\move.hpp">
|
|
718
718
|
</None>
|
|
719
|
-
<None Include="
|
|
719
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\partial_sum.hpp">
|
|
720
720
|
</None>
|
|
721
|
-
<None Include="
|
|
721
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\ref.hpp">
|
|
722
722
|
</None>
|
|
723
|
-
<None Include="
|
|
723
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\remove.hpp">
|
|
724
724
|
</None>
|
|
725
|
-
<None Include="
|
|
725
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\remove_if.hpp">
|
|
726
726
|
</None>
|
|
727
|
-
<None Include="
|
|
727
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\repeat.hpp">
|
|
728
728
|
</None>
|
|
729
|
-
<None Include="
|
|
729
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\repeat_n.hpp">
|
|
730
730
|
</None>
|
|
731
|
-
<None Include="
|
|
731
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\replace.hpp">
|
|
732
732
|
</None>
|
|
733
|
-
<None Include="
|
|
733
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\replace_if.hpp">
|
|
734
734
|
</None>
|
|
735
|
-
<None Include="
|
|
735
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\reverse.hpp">
|
|
736
736
|
</None>
|
|
737
|
-
<None Include="
|
|
737
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\sample.hpp">
|
|
738
738
|
</None>
|
|
739
|
-
<None Include="
|
|
739
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\set_algorithm.hpp">
|
|
740
740
|
</None>
|
|
741
|
-
<None Include="
|
|
741
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\single.hpp">
|
|
742
742
|
</None>
|
|
743
|
-
<None Include="
|
|
743
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\slice.hpp">
|
|
744
744
|
</None>
|
|
745
|
-
<None Include="
|
|
745
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\sliding.hpp">
|
|
746
746
|
</None>
|
|
747
|
-
<None Include="
|
|
747
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\span.hpp">
|
|
748
748
|
</None>
|
|
749
|
-
<None Include="
|
|
749
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\split.hpp">
|
|
750
750
|
</None>
|
|
751
|
-
<None Include="
|
|
751
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\split_when.hpp">
|
|
752
752
|
</None>
|
|
753
|
-
<None Include="
|
|
753
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\stride.hpp">
|
|
754
754
|
</None>
|
|
755
|
-
<None Include="
|
|
755
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\subrange.hpp">
|
|
756
756
|
</None>
|
|
757
|
-
<None Include="
|
|
757
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\tail.hpp">
|
|
758
758
|
</None>
|
|
759
|
-
<None Include="
|
|
759
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\take.hpp">
|
|
760
760
|
</None>
|
|
761
|
-
<None Include="
|
|
761
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\take_exactly.hpp">
|
|
762
762
|
</None>
|
|
763
|
-
<None Include="
|
|
763
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\take_last.hpp">
|
|
764
764
|
</None>
|
|
765
|
-
<None Include="
|
|
765
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\take_while.hpp">
|
|
766
766
|
</None>
|
|
767
|
-
<None Include="
|
|
767
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\tokenize.hpp">
|
|
768
768
|
</None>
|
|
769
|
-
<None Include="
|
|
769
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\transform.hpp">
|
|
770
770
|
</None>
|
|
771
|
-
<None Include="
|
|
771
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\trim.hpp">
|
|
772
772
|
</None>
|
|
773
|
-
<None Include="
|
|
773
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\unbounded.hpp">
|
|
774
774
|
</None>
|
|
775
|
-
<None Include="
|
|
775
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\unique.hpp">
|
|
776
776
|
</None>
|
|
777
|
-
<None Include="
|
|
777
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\view.hpp">
|
|
778
778
|
</None>
|
|
779
|
-
<None Include="
|
|
779
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\zip.hpp">
|
|
780
780
|
</None>
|
|
781
|
-
<None Include="
|
|
781
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view\zip_with.hpp">
|
|
782
782
|
</None>
|
|
783
|
-
<None Include="
|
|
783
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view_adaptor.hpp">
|
|
784
784
|
</None>
|
|
785
|
-
<None Include="
|
|
785
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view_facade.hpp">
|
|
786
786
|
</None>
|
|
787
|
-
<None Include="
|
|
787
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\range\v3\view_interface.hpp">
|
|
788
788
|
</None>
|
|
789
|
-
<None Include="
|
|
789
|
+
<None Include="C:\TeamCity\work\283bde3fda0d76e7\thirdparty\range-v3\include\std\detail\associated_types.hpp">
|
|
790
790
|
</None>
|
|
791
791
|
</ItemGroup>
|
|
792
792
|
<ItemGroup>
|
|
793
|
-
<ProjectReference Include="
|
|
794
|
-
<Project>{
|
|
793
|
+
<ProjectReference Include="C:\TeamCity\work\283bde3fda0d76e7\build\temp.win32-cpython-38\Release\ZERO_CHECK.vcxproj">
|
|
794
|
+
<Project>{419AE9D6-9AA1-3A2D-AABA-0DA4370BF575}</Project>
|
|
795
795
|
<Name>ZERO_CHECK</Name>
|
|
796
796
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
797
797
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|