File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed
lldb/include/lldb/Utility Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -437,12 +437,20 @@ class FileSpec {
437
437
No
438
438
};
439
439
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;
446
454
};
447
455
448
456
// / Dump a FileSpec object to a stream
You can’t perform that action at this time.
0 commit comments