File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
clang/include/clang/Serialization Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,20 +67,20 @@ class GlobalModuleIndex {
67
67
68
68
// / Information about a given module file.
69
69
struct ModuleInfo {
70
- ModuleInfo () : File(), Size(), ModTime() { }
70
+ ModuleInfo () = default ;
71
71
72
72
// / The module file, once it has been resolved.
73
- ModuleFile *File;
73
+ ModuleFile *File = nullptr ;
74
74
75
75
// / The module file name.
76
76
std::string FileName;
77
77
78
78
// / Size of the module file at the time the global index was built.
79
- off_t Size;
79
+ off_t Size = 0 ;
80
80
81
81
// / Modification time of the module file at the time the global
82
82
// / index was built.
83
- time_t ModTime;
83
+ time_t ModTime = 0 ;
84
84
85
85
// / The module IDs on which this module directly depends.
86
86
// / FIXME: We don't really need a vector here.
You can’t perform that action at this time.
0 commit comments