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
The s.size() method returns std::size_t, but os.write takes a signed std::streamsize
I think the same probably applies to the equivalent Str operator below that, but in my case the warning was treated as an error, and it seems to have stopped compilation rather than reporting that one.
The text was updated successfully, but these errors were encountered:
After a recent compiler upgrade on Windows, I started seeing a warning that there's a signed/unsigned mismatch in
cxx.cc
:The
s.size()
method returnsstd::size_t
, butos.write
takes a signedstd::streamsize
I think the same probably applies to the equivalent
Str
operator below that, but in my case the warning was treated as an error, and it seems to have stopped compilation rather than reporting that one.The text was updated successfully, but these errors were encountered: