Add const correctness to auxinfo_t struct (microkernels need update theoretically).

This commit is contained in:
Devin Matthews
2016-03-17 16:32:05 -05:00
parent 1d1a426d18
commit 0e2447fa55

View File

@@ -571,8 +571,8 @@ typedef struct
// Pointers to the micro-panels of A and B which will be used by the
// next call to the micro-kernel.
void* a_next;
void* b_next;
const void* a_next;
const void* b_next;
// The imaginary strides of A and B.
inc_t is_a;