Fix formatting on a single pragma

This commit is contained in:
anonymous 2022-06-15 16:53:09 +02:00
parent f4ed6956b3
commit 746557327b
Signed by: moniere
GPG key ID: 188DD5B072181C0F

View file

@ -45,7 +45,7 @@ struct max_pow2 {
static T process(const T values[N]) {
static_assert(N > 2, "N cannot be less than 3!");
T half_values[N / 2];
#pragma HLS array_partition variable = half_values complete
#pragma HLS array_partition variable=half_values complete
for (uint8_t i = 0; i < N / 2; i++) {
#pragma HLS unroll
const uint8_t j = i << 1;