forked from OSchip/llvm-project
directory_entry - fix uninitialized variable warning. NFCI.
This commit is contained in:
parent
b2a1593f03
commit
c9021d749e
|
@ -126,7 +126,7 @@ public:
|
|||
/// Only information available on most platforms is included.
|
||||
class directory_entry {
|
||||
std::string Path;
|
||||
llvm::sys::fs::file_type Type;
|
||||
llvm::sys::fs::file_type Type = llvm::sys::fs::file_type::type_unknown;
|
||||
|
||||
public:
|
||||
directory_entry() = default;
|
||||
|
|
Loading…
Reference in New Issue