mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:58:12 +00:00
Kernel: Switch Custody to east-const style
This commit is contained in:
parent
4238e2e9be
commit
7a4e6257b7
2 changed files with 3 additions and 3 deletions
|
@ -69,7 +69,7 @@ String Custody::absolute_path() const
|
|||
{
|
||||
if (!parent())
|
||||
return "/";
|
||||
Vector<const Custody*, 32> custody_chain;
|
||||
Vector<Custody const*, 32> custody_chain;
|
||||
for (auto* custody = this; custody; custody = custody->parent())
|
||||
custody_chain.append(custody);
|
||||
StringBuilder builder;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue