-
-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #30529: Use reference instead of pointer to simplify code
By using a reference to a structure the code is much better to read. Instead of `structptr[0].newfaces[structptr[0].current_dimension-1]` we now have `structure.newfaces[structure.current_dimension-1]`. URL: https://trac.sagemath.org/30529 Reported by: gh-kliem Ticket author(s): Jonathan Kliem Reviewer(s): Travis Scrimshaw
- Loading branch information
Showing
4 changed files
with
56 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=a36c047f3e1d88350f54389386cbcbfac78afc68 | ||
md5=63b3ba8b5d0fe6ea15e1b40395d50d47 | ||
cksum=2980357555 | ||
sha1=24c85de6c9a1b6ceac8b26b1eeef8d66eefc7fd0 | ||
md5=e1b3adb6f13d5731be4f13f1dfed11cc | ||
cksum=2688232296 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ee1d038453af9bb563b79ab9bdbb08c18540207a | ||
7194a858ab1eb039fdbdddbfaeee15cccd73d237 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters