Fix build error in debug mode due to wrong code in assert

This commit is contained in:
Brecht Van Lommel 2023-01-04 10:43:31 +01:00
parent 77e8e73ed9
commit bd2d7a4a81
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ inline void execute_lazy_function_eagerly_impl(
fn.destruct_storage(context.storage);
/* Make sure all outputs have been computed. */
BLI_assert(!Span(set_outputs).contains(false));
BLI_assert(!Span<bool>(set_outputs).contains(false));
}
} // namespace detail