LibCore: Default-initialize the FileWatcher event mask

This commit is contained in:
Timothy Flynn 2023-01-17 17:15:13 -05:00 committed by Tim Flynn
parent 8419ca8b78
commit 91cbdc67de
Notes: sideshowbarker 2024-07-17 08:42:05 +09:00

View file

@ -28,7 +28,7 @@ struct FileWatcherEvent {
ChildCreated = 1 << 3,
ChildDeleted = 1 << 4,
};
Type type;
Type type { Type::Invalid };
DeprecatedString event_path;
};