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

via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 14 21:23:43 PDT 2024


Author: Daniel Wedzicha
Date: 2024-08-15T00:23:40-04:00
New Revision: b4dc9869381f91af419ec170837ac324d09525e5

URL: https://github.com/llvm/llvm-project/commit/b4dc9869381f91af419ec170837ac324d09525e5
DIFF: https://github.com/llvm/llvm-project/commit/b4dc9869381f91af419ec170837ac324d09525e5.diff

LOG: [LLDB][OSX] Removed semi colon generating a warning during build (#104398)

Singular warning I noticed when compiling lldb.

Co-authored-by: Daniel <d.wedzicha at efg.gg>

Added: 
    

Modified: 
    lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm

Removed: 
    


################################################################################
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