1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:15:06 +00:00

LibManual: Fix const-correctness issues

This commit is contained in:
Andreas Kling 2023-02-20 18:59:53 +01:00
parent f11899f885
commit dbcf2f2dd4
8 changed files with 18 additions and 18 deletions

View file

@ -46,7 +46,7 @@ ErrorOr<void> SectionNode::reify_if_needed() const
Core::DirIterator dir_iter { own_path.to_deprecated_string(), Core::DirIterator::Flags::SkipDots };
struct Child {
NonnullRefPtr<Node> node;
NonnullRefPtr<Node const> node;
String name_for_sorting;
};
Vector<Child> children;