Skip to content

Commit ac3321f

Browse files
[lldb] Add missing include to SBLanguages.h (#111763)
SBLanguages.h uses a uint16_t but is missing the include for `<cstdint>`, if any file includes this without including that it will cause a build error so this commit adds this include.
1 parent 115cb40 commit ac3321f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lldb/scripts/generate-sbapi-dwarf-enum.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#ifndef LLDB_API_SBLANGUAGE_H
1717
#define LLDB_API_SBLANGUAGE_H
1818
19+
#include <cstdint>
20+
1921
namespace lldb {
2022
/// Used by \\ref SBExpressionOptions.
2123
/// These enumerations use the same language enumerations as the DWARF

0 commit comments

Comments
 (0)