We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c138b7 commit 026d494Copy full SHA for 026d494
include/nbl/asset/IAsset.h
@@ -156,15 +156,15 @@ class IAsset : virtual public core::IReferenceCounted
156
//!
157
inline bool isMutable() const {return m_mutable;}
158
159
- inline void visitDependents(std::function<bool(const IAsset*)> visit) const
160
- {
161
- visitDependents_impl([&visit](const IAsset* dep)->bool
+ inline void visitDependents(std::function<bool(const IAsset*)> visit) const
+ {
+ visitDependents_impl([&visit](const IAsset* dep)->bool
162
{
163
if (dep)
164
return visit(dep);
165
return true;
166
});
167
- }
+ }
168
169
inline void visitDependents(std::function<bool(IAsset*)> visit)
170
0 commit comments