Author: Dave Lee Date: 2026-02-03T13:52:11-08:00 New Revision: f9b5ab1cc9b92a97ef8fbe64be61d7ab48f1bbba
URL: https://github.com/llvm/llvm-project/commit/f9b5ab1cc9b92a97ef8fbe64be61d7ab48f1bbba DIFF: https://github.com/llvm/llvm-project/commit/f9b5ab1cc9b92a97ef8fbe64be61d7ab48f1bbba.diff LOG: [lldb] Add missing include guard in FormatterBytecode.h (#179528) Added: Modified: lldb/include/lldb/DataFormatters/FormatterBytecode.h Removed: ################################################################################ diff --git a/lldb/include/lldb/DataFormatters/FormatterBytecode.h b/lldb/include/lldb/DataFormatters/FormatterBytecode.h index 21454d9c7e231..41f999196b47f 100644 --- a/lldb/include/lldb/DataFormatters/FormatterBytecode.h +++ b/lldb/include/lldb/DataFormatters/FormatterBytecode.h @@ -6,6 +6,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLDB_DATAFORMATTERS_FORMATTERBYTECODE_H +#define LLDB_DATAFORMATTERS_FORMATTERBYTECODE_H + #include "lldb/DataFormatters/TypeSummary.h" #include "lldb/Symbol/CompilerType.h" @@ -62,3 +65,5 @@ std::string toString(FormatterBytecode::Selectors sel); std::string toString(FormatterBytecode::Signatures sig); } // namespace lldb_private + +#endif _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
