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
In g2_addfield.c we have this code:
else { printf("g2_addfield: Data Representation Template 5.%ld not yet implemented.\n", idrsnum); ierr = -7; return ierr; }
But this code can never be reached, because if the drsnum is wrong, we already discovered that and returned a -5.
The text was updated successfully, but these errors were encountered:
OK, this can't be reached but that's OK in this case. This is the equivalent of a default in a case statement that cannot be reached.
Sorry, something went wrong.
edwardhartnett
No branches or pull requests
In g2_addfield.c we have this code:
But this code can never be reached, because if the drsnum is wrong, we already discovered that and returned a -5.
The text was updated successfully, but these errors were encountered: