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
auto r = boost::charconv::from_chars(buffer, buffer + std::strlen(buffer), v);
I recommend spelling out the return type:
boost::charconv::from_chars_result r = boost::charconv::from_chars(buffer, buffer + std::strlen(buffer), v);
It will make it clear for the person that first reads the introduction that the return type is also part of this library, as opposed to using another Boost library or a component from STD.
The text was updated successfully, but these errors were encountered:
The initial docs examples use
auto
as i n:I recommend spelling out the return type:
It will make it clear for the person that first reads the introduction that the return type is also part of this library, as opposed to using another Boost library or a component from STD.
The text was updated successfully, but these errors were encountered: