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:
parent
f11899f885
commit
dbcf2f2dd4
8 changed files with 18 additions and 18 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue