Skip to content

Commit 9f61a60

Browse files
committed
[NFC] [clang] fixed unused variable warning
1 parent 17721b7 commit 9f61a60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/ExecutionEngine/Orc/TargetProcess/UnwindInfoManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ llvm_orc_rt_alt_UnwindInfoManager_deregister(const char *Data, uint64_t Size) {
5151
namespace llvm::orc {
5252

5353
static const char *AddFnName = "__unw_add_find_dynamic_unwind_sections";
54-
static const char *RemoveFnName = "__unw_remove_find_dynamic_unwind_sections";
54+
[[maybe_unused]] static const char *RemoveFnName = "__unw_remove_find_dynamic_unwind_sections";
5555
static std::unique_ptr<UnwindInfoManager> Instance;
5656
static int (*RemoveFindDynamicUnwindSections)(void *) = nullptr;
5757

0 commit comments

Comments
 (0)