Skip to content

Commit 9c87925

Browse files
author
kevyuu
committed
Fix indentation
1 parent ef2ed3a commit 9c87925

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/nbl/asset/IAsset.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ class IAsset : virtual public core::IReferenceCounted
169169
inline void visitDependents(std::function<bool(IAsset*)> visit)
170170
{
171171
assert(isMutable());
172-
visitDependents([&](const IAsset* dependent) -> bool
173-
{
174-
return visit(const_cast<IAsset*>(dependent));
175-
});
172+
visitDependents([&](const IAsset* dependent) -> bool
173+
{
174+
return visit(const_cast<IAsset*>(dependent));
175+
});
176176
}
177177

178178
virtual bool valid() const = 0;

0 commit comments

Comments
 (0)