[libcxx-commits] [PATCH] D89947: [libcxx] [test] Avoid an unused variable in non-libcpp cases in path.append

Martin Storsjö via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Nov 2 23:33:38 PST 2020


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG22e5ee0eef81: [libcxx] [test] Avoid an unused variable in non-libcpp cases in path.append (authored by mstorsjo).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D89947/new/

https://reviews.llvm.org/D89947

Files:
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp


Index: libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp
===================================================================
--- libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp
+++ libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp
@@ -330,6 +330,7 @@
     doAppendSourceTest<char32_t>(TC);
   }
   for (auto const & TC : LongLHSCases) {
+    (void)TC;
     LIBCPP_ONLY(doAppendSourceAllocTest<char>(TC));
     LIBCPP_ONLY(doAppendSourceAllocTest<wchar_t>(TC));
   }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D89947.302474.patch
Type: text/x-patch
Size: 573 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20201103/359408db/attachment.bin>


More information about the libcxx-commits mailing list