Skip to content

Commit 1138415

Browse files
Update lldb/include/lldb/Symbol/ObjectFile.h
Co-authored-by: Jonas Devlieghere <[email protected]>
1 parent 0a65589 commit 1138415

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

lldb/include/lldb/Symbol/ObjectFile.h

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,14 @@ class ObjectFile : public std::enable_shared_from_this<ObjectFile>,
8181
enum BinaryType {
8282
eBinaryTypeInvalid = 0,
8383
eBinaryTypeUnknown,
84-
eBinaryTypeKernel, /// kernel binary
85-
eBinaryTypeUser, /// user process binary,
86-
/// dyld addr
87-
eBinaryTypeUserAllImageInfos, /// user process binary,
88-
/// dyld_all_image_infos addr
89-
eBinaryTypeStandalone /// standalone binary / firmware
84+
/// kernel binary
85+
eBinaryTypeKernel,
86+
/// user process binary, dyld addr
87+
eBinaryTypeUser,
88+
/// user process binary, dyld_all_image_infos addr
89+
eBinaryTypeUserAllImageInfos,
90+
/// standalone binary / firmware
91+
eBinaryTypeStandalone
9092
};
9193

9294
struct LoadableData {

0 commit comments

Comments
 (0)