diff options
| author | Adrian Prantl <aprantl@apple.com> | 2019-10-08 18:04:49 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2019-10-08 18:04:49 +0000 |
| commit | 065d34dbe1000302404a051b34dc3b1c35077060 (patch) | |
| tree | 711ad6c890f9f58fab572d9aedbbb20eefc68d59 /lldb | |
| parent | 5d415b706f678108fa7f5dca7ade588cd8da24eb (diff) | |
| download | bcm5719-llvm-065d34dbe1000302404a051b34dc3b1c35077060.tar.gz bcm5719-llvm-065d34dbe1000302404a051b34dc3b1c35077060.zip | |
Reflow/fix doxygen comments.
llvm-svn: 374096
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/include/lldb/Symbol/ObjectFile.h | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/lldb/include/lldb/Symbol/ObjectFile.h b/lldb/include/lldb/Symbol/ObjectFile.h index dcc37eadfb0..7a0acd8e304 100644 --- a/lldb/include/lldb/Symbol/ObjectFile.h +++ b/lldb/include/lldb/Symbol/ObjectFile.h @@ -63,16 +63,22 @@ class ObjectFile : public std::enable_shared_from_this<ObjectFile>, public: enum Type { eTypeInvalid = 0, - eTypeCoreFile, /// A core file that has a checkpoint of a program's - /// execution state - eTypeExecutable, /// A normal executable - eTypeDebugInfo, /// An object file that contains only debug information - eTypeDynamicLinker, /// The platform's dynamic linker executable - eTypeObjectFile, /// An intermediate object file - eTypeSharedLibrary, /// A shared library that can be used during execution - eTypeStubLibrary, /// A library that can be linked against but not used for - /// execution - eTypeJIT, /// JIT code that has symbols, sections and possibly debug info + /// A core file that has a checkpoint of a program's execution state. + eTypeCoreFile, + /// A normal executable. + eTypeExecutable, + /// An object file that contains only debug information. + eTypeDebugInfo, + /// The platform's dynamic linker executable. + eTypeDynamicLinker, + /// An intermediate object file. + eTypeObjectFile, + /// A shared library that can be used during execution. + eTypeSharedLibrary, + /// A library that can be linked against but not used for execution. + eTypeStubLibrary, + /// JIT code that has symbols, sections and possibly debug info. + eTypeJIT, eTypeUnknown }; |

