diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-08-19 15:33:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-19 15:33:15 -0700 |
| commit | 5e164e3dd2b9fbbd68782f4c3c73242918b3c688 (patch) | |
| tree | fcb68cc8feb0173b7f1e0b29a265281f7c9ea90f /toolsrc/src/vcpkg-test/util.cpp | |
| parent | 2b55727614f48024dfc52dce0ff93a5748d640cc (diff) | |
| download | vcpkg-5e164e3dd2b9fbbd68782f4c3c73242918b3c688.tar.gz vcpkg-5e164e3dd2b9fbbd68782f4c3c73242918b3c688.zip | |
[vcpkg] Add Forward Declarations (originally by @cngzhnp) (#12985)
Co-authored-by: cngzhnp <cengizhanpasaoglu@gmail.com>
Diffstat (limited to 'toolsrc/src/vcpkg-test/util.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg-test/util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg-test/util.cpp b/toolsrc/src/vcpkg-test/util.cpp index 2841aefa0..a2b9317a2 100644 --- a/toolsrc/src/vcpkg-test/util.cpp +++ b/toolsrc/src/vcpkg-test/util.cpp @@ -195,7 +195,7 @@ namespace vcpkg::Test ec.assign(errno, std::system_category()); } #else - Util::unused(target, file, ec); + (void)(target, file, ec); vcpkg::Checks::exit_with_message(VCPKG_LINE_INFO, no_filesystem_message); #endif } @@ -217,7 +217,7 @@ namespace vcpkg::Test #elif FILESYSTEM_SYMLINK == FILESYSTEM_SYMLINK_UNIX ::vcpkg::Test::create_symlink(target, file, ec); #else - Util::unused(target, file, ec); + (void)(target, file, ec); vcpkg::Checks::exit_with_message(VCPKG_LINE_INFO, no_filesystem_message); #endif } |
