[libcxx-commits] [PATCH] D124911: [libunwind] Silence warnings about unused variables. NFC.
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed May 4 12:55:19 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6123e9c0d03b: [libunwind] Silence warnings about unused variables. NFC. (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124911/new/
https://reviews.llvm.org/D124911
Files:
libunwind/src/AddressSpace.hpp
Index: libunwind/src/AddressSpace.hpp
===================================================================
--- libunwind/src/AddressSpace.hpp
+++ libunwind/src/AddressSpace.hpp
@@ -551,6 +551,7 @@
DWORD err = GetLastError();
_LIBUNWIND_TRACE_UNWINDING("findUnwindSections: EnumProcessModules failed, "
"returned error %d", (int)err);
+ (void)err;
return false;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124911.427113.patch
Type: text/x-patch
Size: 417 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220504/5b7eb58d/attachment.bin>
More information about the libcxx-commits
mailing list