You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clang-format doesn't seem to handle `[unroll]`, but this should probably be one of:
```c++
[unroll]
for (int i = 1; i < N; ++i)
XSquaredSum += XSquared[i];
```
or
```c++
[unroll] for (int i = 1; i < N; ++i)
XSquaredSum += XSquared[i];
```
The latter is closer to what clang-format does with [[unroll]] instead of [unroll] to trick it into seeing that as an attribute.
clang-format doesn't seem to handle
[unroll]
, but this should probably be one of:or
The latter is closer to what clang-format does with
[[unroll]]
instead of[unroll]
to trick it into seeing that as an attribute.Originally posted by @bogner in #121611 (comment)
The text was updated successfully, but these errors were encountered: