[Lldb-commits] [lldb] 502a88b - [lldb][NFCI] Add header guard to PlatformRemoteAppleXR.h (#81565)

via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 13 10:13:39 PST 2024


Author: Alex Langford
Date: 2024-02-13T10:13:35-08:00
New Revision: 502a88bae799694d0ed90e1839cd7a0aacb6bc9d

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

LOG: [lldb][NFCI] Add header guard to PlatformRemoteAppleXR.h (#81565)

Added: 
    

Modified: 
    lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleXR.h

Removed: 
    


################################################################################
diff  --git a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleXR.h b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleXR.h
index 4fed6e15eda31c..2fbb6caad8110f 100644
--- a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleXR.h
+++ b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleXR.h
@@ -6,6 +6,9 @@
 //
 //===----------------------------------------------------------------------===//
 
+#ifndef LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
+#define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
+
 #include "PlatformRemoteDarwinDevice.h"
 
 namespace lldb_private {
@@ -36,3 +39,5 @@ class PlatformRemoteAppleXR : public PlatformRemoteDarwinDevice {
   llvm::StringRef GetPlatformName() override;
 };
 } // namespace lldb_private
+
+#endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H


        


More information about the lldb-commits mailing list