diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2026-04-06 09:28:50 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2026-04-06 09:28:50 +0100 |
| commit | 6c4453fdc49e700969bc465e365dd610d7e137c2 (patch) | |
| tree | d72115f06314304b83aa10ff2c38b8640d09cb3d /src/solvers/solutions.h | |
| parent | 0ca921f2f552072de575a5db738c8444bd8d571a (diff) | |
| download | nissy-core-6c4453fdc49e700969bc465e365dd610d7e137c2.tar.gz nissy-core-6c4453fdc49e700969bc465e365dd610d7e137c2.zip | |
Fixes for Microsoft's stupid broken compiler
Diffstat (limited to 'src/solvers/solutions.h')
| -rw-r--r-- | src/solvers/solutions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/solvers/solutions.h b/src/solvers/solutions.h index f1f0c58..beedc64 100644 --- a/src/solvers/solutions.h +++ b/src/solvers/solutions.h | |||
| @@ -14,7 +14,7 @@ STATIC bool appendinverse( | |||
| 14 | STATIC void appendsolution_dfs(const solution_moves_t [NON_NULL], size_t, | 14 | STATIC void appendsolution_dfs(const solution_moves_t [NON_NULL], size_t, |
| 15 | const uint64_t *, size_t, uint8_t *, const solution_settings_t [NON_NULL], | 15 | const uint64_t *, size_t, uint8_t *, const solution_settings_t [NON_NULL], |
| 16 | solution_list_t [NON_NULL], | 16 | solution_list_t [NON_NULL], |
| 17 | solution_moves_t [static NTRANS * SOLUTION_MAXLEN], int64_t [NON_NULL]); | 17 | solution_moves_t [SIZE(NTRANS * SOLUTION_MAXLEN)], int64_t [NON_NULL]); |
| 18 | STATIC int64_t appendsolution(const solution_moves_t [NON_NULL], | 18 | STATIC int64_t appendsolution(const solution_moves_t [NON_NULL], |
| 19 | size_t, const uint64_t *, const solution_settings_t [NON_NULL], | 19 | size_t, const uint64_t *, const solution_settings_t [NON_NULL], |
| 20 | solution_list_t [NON_NULL]); | 20 | solution_list_t [NON_NULL]); |
| @@ -179,7 +179,7 @@ appendsolution_dfs( | |||
| 179 | uint8_t *tt, | 179 | uint8_t *tt, |
| 180 | const solution_settings_t settings[NON_NULL], | 180 | const solution_settings_t settings[NON_NULL], |
| 181 | solution_list_t list[NON_NULL], | 181 | solution_list_t list[NON_NULL], |
| 182 | solution_moves_t tsol[static NTRANS * SOLUTION_MAXLEN], | 182 | solution_moves_t tsol[SIZE(NTRANS * SOLUTION_MAXLEN)], |
| 183 | int64_t r[NON_NULL] | 183 | int64_t r[NON_NULL] |
| 184 | ) | 184 | ) |
| 185 | { | 185 | { |
