Skip to content

Commit

Permalink
clang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
uecker committed May 27, 2024
1 parent 9cd5f16 commit 3107d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/num/matexp.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void mat_exp(int N, float t, float out[N][N], const float in[N][N])
static void zode_matrix_interval(float h, float tol, int N, complex float x[N], float st, float end, const complex float matrix[N][N])
{
#ifdef __clang__
const void* matrix2 = matrix1; // clang workaround
const void* matrix2 = matrix; // clang workaround
#endif
NESTED(void, zode_matrix_fun, (float* x, float t, const float* in))
{
Expand Down

0 comments on commit 3107d87

Please sign in to comment.