[Lldb-commits] [PATCH] D141087: Revert an unintentional API ABI break
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 5 13:43:25 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG69f2b5fcf1be: Revert an unintentional API ABI break (authored by aprantl).
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141087/new/
https://reviews.llvm.org/D141087
Files:
lldb/include/lldb/lldb-enumerations.h
Index: lldb/include/lldb/lldb-enumerations.h
===================================================================
--- lldb/include/lldb/lldb-enumerations.h
+++ lldb/include/lldb/lldb-enumerations.h
@@ -437,7 +437,10 @@
/// specification for ease of use and consistency.
/// The enum -> string code is in Language.cpp, don't change this
/// table without updating that code as well.
-enum LanguageType : uint16_t {
+///
+/// This datatype is used in SBExpressionOptions::SetLanguage() which
+/// makes this type API. Do not change its underlying storage type!
+enum LanguageType {
eLanguageTypeUnknown = 0x0000, ///< Unknown or invalid language value.
eLanguageTypeC89 = 0x0001, ///< ISO C:1989.
eLanguageTypeC = 0x0002, ///< Non-standardized C, such as K&R.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141087.486670.patch
Type: text/x-patch
Size: 800 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230105/96e052ef/attachment.bin>
More information about the lldb-commits
mailing list