[Lldb-commits] [lldb] [LLDB][OSX] Removed semi colon generating a warning during build (PR #104398)

Daniel Wedzicha via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 14 21:12:58 PDT 2024


https://github.com/boredhuman created https://github.com/llvm/llvm-project/pull/104398

Singular warning I noticed when compiling lldb.

>From 70bff417af642a6232264b3ef51584ef089afa2b Mon Sep 17 00:00:00 2001
From: Daniel <d.wedzicha at efg.gg>
Date: Thu, 15 Aug 2024 00:09:25 -0400
Subject: [PATCH] [LLDB][OSX] Removed semi colon generating a warning during
 build

---
 lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm b/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
index b714f7be187aca..d27bd1b7426e6c 100644
--- a/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
+++ b/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
@@ -128,7 +128,7 @@ static void ParseOSVersion(llvm::VersionTuple &version, NSString *Key) {
 static bool ResolveAndVerifyCandidateSupportDir(FileSpec &path) {
   FileSystem::Instance().Resolve(path);
   return FileSystem::Instance().IsDirectory(path);
-};
+}
 
 bool HostInfoMacOSX::ComputeSupportExeDirectory(FileSpec &file_spec) {
   FileSpec lldb_file_spec = GetShlibDir();



More information about the lldb-commits mailing list