Skip to content

Commit 026d494

Browse files
author
kevyuu
committed
Fix indentation
1 parent 9c138b7 commit 026d494

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
@@ -156,15 +156,15 @@ class IAsset : virtual public core::IReferenceCounted
156156
//!
157157
inline bool isMutable() const {return m_mutable;}
158158

159-
inline void visitDependents(std::function<bool(const IAsset*)> visit) const
160-
{
161-
visitDependents_impl([&visit](const IAsset* dep)->bool
159+
inline void visitDependents(std::function<bool(const IAsset*)> visit) const
160+
{
161+
visitDependents_impl([&visit](const IAsset* dep)->bool
162162
{
163163
if (dep)
164164
return visit(dep);
165165
return true;
166166
});
167-
}
167+
}
168168

169169
inline void visitDependents(std::function<bool(IAsset*)> visit)
170170
{

0 commit comments

Comments
 (0)