[Lldb-commits] [lldb] 10d02fb - [lldb][NFC] Fix -Wdocumentation issue in ModuleSpec.h/ThreadTrace.h
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 29 10:47:46 PDT 2021
Author: Raphael Isemann
Date: 2021-03-29T19:47:29+02:00
New Revision: 10d02fb15b2d03d7f7b5c372946f5cb0e74cb220
URL: https://github.com/llvm/llvm-project/commit/10d02fb15b2d03d7f7b5c372946f5cb0e74cb220
DIFF: https://github.com/llvm/llvm-project/commit/10d02fb15b2d03d7f7b5c372946f5cb0e74cb220.diff
LOG: [lldb][NFC] Fix -Wdocumentation issue in ModuleSpec.h/ThreadTrace.h
Added:
Modified:
lldb/include/lldb/Core/ModuleSpec.h
lldb/include/lldb/Target/ThreadTrace.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/Core/ModuleSpec.h b/lldb/include/lldb/Core/ModuleSpec.h
index 9dd398a05291..d159eaf6ff48 100644
--- a/lldb/include/lldb/Core/ModuleSpec.h
+++ b/lldb/include/lldb/Core/ModuleSpec.h
@@ -30,9 +30,9 @@ class ModuleSpec {
m_object_name(), m_object_offset(0), m_object_size(0),
m_source_mappings() {}
- /// If the \param data argument is passed, its contents will be used
+ /// If the \c data argument is passed, its contents will be used
/// as the module contents instead of trying to read them from
- /// \param file_spec.
+ /// \c file_spec .
ModuleSpec(const FileSpec &file_spec, const UUID &uuid = UUID(),
lldb::DataBufferSP data = lldb::DataBufferSP())
: m_file(file_spec), m_platform_file(), m_symbol_file(), m_arch(),
diff --git a/lldb/include/lldb/Target/ThreadTrace.h b/lldb/include/lldb/Target/ThreadTrace.h
index a32b33867c26..fee09a742a4e 100644
--- a/lldb/include/lldb/Target/ThreadTrace.h
+++ b/lldb/include/lldb/Target/ThreadTrace.h
@@ -28,7 +28,7 @@ class ThreadTrace : public Thread {
/// \param[in] tid
/// The tid of this thread.
///
- /// \param[in] trace_file.
+ /// \param[in] trace_file
/// The file that contains the list of instructions that were traced when
/// this thread was being executed.
ThreadTrace(Process &process, lldb::tid_t tid, const FileSpec &trace_file)
More information about the lldb-commits
mailing list