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
This is very similar to #1225, but I missed this one in cxx.h because it happened later in my own code once building the cxx crate dependency was unblocked:
It's reporting the same signed/unsigned warning (treated as an error in my case), but this time the issue is that this->stride is a size_t and diff and the typename Slice<T>::iterator::difference_type return type are both signed ptrdiff_t.
I should have a fix, but I want to make sure there aren't any more of these lurking in my code before I make another PR.
The text was updated successfully, but these errors were encountered:
This is very similar to #1225, but I missed this one in
cxx.h
because it happened later in my own code once building thecxx
crate dependency was unblocked:It's reporting the same signed/unsigned warning (treated as an error in my case), but this time the issue is that
this->stride
is asize_t
anddiff
and thetypename Slice<T>::iterator::difference_type
return type are both signedptrdiff_t
.I should have a fix, but I want to make sure there aren't any more of these lurking in my code before I make another PR.
The text was updated successfully, but these errors were encountered: