mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 13:30:31 +00:00
LibCore: Default-initialize the FileWatcher event mask
This commit is contained in:
parent
8419ca8b78
commit
91cbdc67de
Notes:
sideshowbarker
2024-07-17 08:42:05 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/91cbdc67de Pull-request: https://github.com/SerenityOS/serenity/pull/17063 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ struct FileWatcherEvent {
|
|||
ChildCreated = 1 << 3,
|
||||
ChildDeleted = 1 << 4,
|
||||
};
|
||||
Type type;
|
||||
Type type { Type::Invalid };
|
||||
DeprecatedString event_path;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue