[Lldb-commits] [lldb] [lldb] Add include for SBLanguages in lldb-enumerations (PR #111907)
Chelsea Cassanova via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 10 13:07:39 PDT 2024
https://github.com/chelcassanova updated https://github.com/llvm/llvm-project/pull/111907
>From c179c081ff76ce53a0c13265b1e68eb682699415 Mon Sep 17 00:00:00 2001
From: Chelsea Cassanova <chelsea_cassanova at apple.com>
Date: Thu, 10 Oct 2024 12:58:06 -0700
Subject: [PATCH] [lldb] Add include for SBLanguages in lldb-enumerations
This adds an include for SBLanguages.h in lldb-enumerations.h so that
files that need this enum do not have to explicitly include SBLanguages.
---
lldb/include/lldb/lldb-enumerations.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/include/lldb/lldb-enumerations.h b/lldb/include/lldb/lldb-enumerations.h
index 938f6e3abe8f2a..df3aadcb0689c6 100644
--- a/lldb/include/lldb/lldb-enumerations.h
+++ b/lldb/include/lldb/lldb-enumerations.h
@@ -11,6 +11,7 @@
#include <cstdint>
#include <type_traits>
+#include <lldb/API/SBLanguages.h>
#ifndef SWIG
// Macro to enable bitmask operations on an enum. Without this, Enum | Enum
More information about the lldb-commits
mailing list