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 05ab5bf commit abf7bdcCopy full SHA for abf7bdc
src/nbl/asset/ICPUImage.cpp
@@ -188,7 +188,8 @@ class CFlattenRegionsStreamHashImageFilter : public CMatchedSizeInOutImageFilter
188
flatten.preFill = true;
189
memset(flatten.fillValue.pointer, 0, sizeof(flatten.fillValue.pointer));
190
191
- assert(CFlattenRegionsImageFilter::execute(policy, &proxy.flatten)); // this should never fail, at this point we are already validated
+ auto status = CFlattenRegionsImageFilter::execute(policy, &proxy.flatten);
192
+ assert(status); // this should never fail, at this point we are already validated
193
}
194
195
/*
0 commit comments