Skip to content

Commit 83a6b02

Browse files
committed
[lldb] Move comments and add missing periods (NFC)
Move comments to the line before the member variables and add missing periods.
1 parent 278d557 commit 83a6b02

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

lldb/include/lldb/Utility/FileSpec.h

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -437,12 +437,20 @@ class FileSpec {
437437
No
438438
};
439439

440-
// Member variables
441-
ConstString m_directory; ///< The uniqued directory path
442-
ConstString m_filename; ///< The uniqued filename path
443-
mutable bool m_is_resolved = false; ///< True if this path has been resolved.
444-
mutable Absolute m_absolute = Absolute::Calculate; ///< Cache absoluteness.
445-
Style m_style; ///< The syntax that this path uses (e.g. Windows / Posix)
440+
/// The unique'd directory path.
441+
ConstString m_directory;
442+
443+
/// The unique'd filename path.
444+
ConstString m_filename;
445+
446+
/// True if this path has been resolved.
447+
mutable bool m_is_resolved = false;
448+
449+
/// Cache whether this path is absolute.
450+
mutable Absolute m_absolute = Absolute::Calculate;
451+
452+
/// The syntax that this path uses. (e.g. Windows / Posix)
453+
Style m_style;
446454
};
447455

448456
/// Dump a FileSpec object to a stream

0 commit comments

Comments
 (0)