-
Notifications
You must be signed in to change notification settings - Fork 83
Fix several warnings from GCC 16 #396
New issue
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
base: v1.3.x
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -66,7 +66,7 @@ int main (int argc, char **argv) | |
| // mtx2bin_demo). | ||
|
|
||
| double t = LAGraph_WallClockTime ( ) ; | ||
| char *matrix_name = (argc > 1) ? argv [1] : "stdin" ; | ||
| //char *matrix_name = (argc > 1) ? argv [1] : "stdin" ; | ||
| LG_TRY (readproblem ( | ||
| &G, // the graph that is read from stdin or a file | ||
| NULL, // source nodes (none, if NULL) | ||
|
|
@@ -101,4 +101,3 @@ int main (int argc, char **argv) | |
| LG_TRY (LAGraph_Finalize (msg)) ; | ||
| return (GrB_SUCCESS) ; | ||
| } | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't delete this line. I use these to navigate with vim. If gcc 16 is complaining about it, then it would complain in 100s of places in my codes, and the warning should just be silenced instead.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The last line had some trailing white space. I removed it, now it is similar to all the other files. Difficult to tell by the web diff. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,7 +56,6 @@ void teardown (void) | |
|
|
||
| void test_dnn (void) | ||
| { | ||
| GrB_Info info ; | ||
| setup ( ) ; | ||
|
|
||
| #define NLAYERS 30 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.