Open
Description
clang-format doesn't seem to handle [unroll]
, but this should probably be one of:
[unroll]
for (int i = 1; i < N; ++i)
XSquaredSum += XSquared[i];
or
[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.
Originally posted by @bogner in #121611 (comment)
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Ready