mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-28 08:16:05 +00:00
directory_entry - fix uninitialized variable warning. NFCI.
This commit is contained in:
parent
ec6f00b6b8
commit
7c4aa88ca2
@ -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…
x
Reference in New Issue
Block a user