We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The naive approach to unpacking the latitude and longitude is:
const auto lat1r_lon1r = GetLatLonRadians(src); const double lat1r = lat1r_lon1r.first; const double lon1r = lat1r_lon1r.second;
This solution is less compact than either:
const auto [lat1r, lon1r] = GetLatLonRadians(src);
or
tie(lat1r, lon1r) = GetLatLonRadians(src);
Investigate why.
The text was updated successfully, but these errors were encountered:
ryanelandt
No branches or pull requests
The naive approach to unpacking the latitude and longitude is:
This solution is less compact than either:
or
Investigate why.
The text was updated successfully, but these errors were encountered: