[Lldb-commits] [lldb] 83a6b02 - [lldb] Move comments and add missing periods (NFC)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 23 15:29:07 PDT 2023
Author: Jonas Devlieghere
Date: 2023-10-23T15:29:01-07:00
New Revision: 83a6b02c3d79f0ac714690e1baec14efb1c24fe9
URL: https://github.com/llvm/llvm-project/commit/83a6b02c3d79f0ac714690e1baec14efb1c24fe9
DIFF: https://github.com/llvm/llvm-project/commit/83a6b02c3d79f0ac714690e1baec14efb1c24fe9.diff
LOG: [lldb] Move comments and add missing periods (NFC)
Move comments to the line before the member variables and add missing
periods.
Added:
Modified:
lldb/include/lldb/Utility/FileSpec.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/Utility/FileSpec.h b/lldb/include/lldb/Utility/FileSpec.h
index 6eb5b805d9d9f79..f06a8543a056e87 100644
--- a/lldb/include/lldb/Utility/FileSpec.h
+++ b/lldb/include/lldb/Utility/FileSpec.h
@@ -437,12 +437,20 @@ class FileSpec {
No
};
- // Member variables
- ConstString m_directory; ///< The uniqued directory path
- ConstString m_filename; ///< The uniqued filename path
- mutable bool m_is_resolved = false; ///< True if this path has been resolved.
- mutable Absolute m_absolute = Absolute::Calculate; ///< Cache absoluteness.
- Style m_style; ///< The syntax that this path uses (e.g. Windows / Posix)
+ /// The unique'd directory path.
+ ConstString m_directory;
+
+ /// The unique'd filename path.
+ ConstString m_filename;
+
+ /// True if this path has been resolved.
+ mutable bool m_is_resolved = false;
+
+ /// Cache whether this path is absolute.
+ mutable Absolute m_absolute = Absolute::Calculate;
+
+ /// The syntax that this path uses. (e.g. Windows / Posix)
+ Style m_style;
};
/// Dump a FileSpec object to a stream
More information about the lldb-commits
mailing list