Skip to content

Commit

Permalink
Merge pull request #615 from DrTimothyAldenDavis/dev2
Browse files Browse the repository at this point in the history
remove restrict keyword
  • Loading branch information
DrTimothyAldenDavis authored Dec 21, 2023
2 parents 1c70a34 + ab43af2 commit 45b4121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHOLMOD/Include/cholmod_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@

bool cholmod_mult_uint64_t // c = a*b, return true if ok
(
uint64_t *restrict c,
uint64_t *c,
const uint64_t a,
const uint64_t b
) ;
Expand Down
2 changes: 1 addition & 1 deletion CHOLMOD/Utility/cholmod_mult_uint64_t.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

bool cholmod_mult_uint64_t // c = a*b, return true if ok
(
uint64_t *restrict c,
uint64_t *c,
const uint64_t a,
const uint64_t b
)
Expand Down

0 comments on commit 45b4121

Please sign in to comment.