You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/app/raw.githubusercontent.com/tcbrindle/flux/main/single_include/flux.hpp:1136: Fatal error: assertion 'self.has_value()' failed
terminate called without an active exception
Program terminated with signal: SIGSEGV
If we passed a positive offset to the non-RA version of advance(), we were performing an inc() on the passed-in cursor without first checking whether it was at the end.
So let's not do that.
Fixes#132
If we passed a positive offset to the non-RA version of advance(), we were performing an inc() on the passed-in cursor without first checking whether it was at the end.
So let's not do that.
Fixes#132
An assertion is triggered due to the
drop
inintersperse
.See https://cpp1.godbolt.org/z/ff99sqcK5:
The same happens here (https://cpp1.godbolt.org/z/s4xGzzK3j):
The text was updated successfully, but these errors were encountered: