GraphBLAS / graphblas-api-c

Other
7 stars 3 forks source link

GrB_Matrix_deserialize: suggest adding "const" to "void * serialized_data". #65

Closed DrTimothyAldenDavis closed 2 years ago

DrTimothyAldenDavis commented 2 years ago

Line 2601 of the spec:

GrB_Info GrB_Matrix_deserialize(GrB_Matrix *A, GrB_Type d,
void *serialized_data, GrB_Index serialized_size);

The void *serialize_data could be const void *serialize_data.

mcmillan03 commented 2 years ago

added const.