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
To compile on Zig, use of temporary variables is more restricted. A number of changes were made from:
skim_matrix_sum_distance.swap(vector<vector<long double>>(skim_origins.size(),vector<long double>(skim_destinations.size(),0.)));
etc. to:
skim_matrix_sum_distance.assign(skim_origins.size(),vector<long double>(skim_destinations.size(),0.));
etc.
E.g.:
sdna_plus/sDNA/sdna_vs2008/calculation.cpp
Line 292 in 9d73c6c
The text was updated successfully, but these errors were encountered:
Included in #74 on Cross_Platform branch
Sorry, something went wrong.
No branches or pull requests
To compile on Zig, use of temporary variables is more restricted. A number of changes were made from:
etc. to:
etc.
E.g.:
sdna_plus/sDNA/sdna_vs2008/calculation.cpp
Line 292 in 9d73c6c
The text was updated successfully, but these errors were encountered: