mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-01-08 11:40:28 +00:00
[vcpkg] Fix toolsrc CMake build error (#10973)
This commit is contained in:
parent
cd992c4cbb
commit
6709d3d7d0
@ -717,9 +717,9 @@ namespace vcpkg::Files
|
|||||||
|
|
||||||
virtual fs::path absolute(const fs::path& path, std::error_code& ec) const override
|
virtual fs::path absolute(const fs::path& path, std::error_code& ec) const override
|
||||||
{
|
{
|
||||||
#if USE_STD_FILESYSTEM
|
#if VCPKG_USE_STD_FILESYSTEM
|
||||||
return fs::stdfs::absolute(path, ec);
|
return fs::stdfs::absolute(path, ec);
|
||||||
#else // ^^^ USE_STD_FILESYSTEM / !USE_STD_FILESYSTEM vvv
|
#else // ^^^ VCPKG_USE_STD_FILESYSTEM / !VCPKG_USE_STD_FILESYSTEM vvv
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
// absolute was called system_complete in experimental filesystem
|
// absolute was called system_complete in experimental filesystem
|
||||||
return fs::stdfs::system_complete(path, ec);
|
return fs::stdfs::system_complete(path, ec);
|
||||||
|
Loading…
Reference in New Issue
Block a user