We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3da256d + fb1243d commit 1999b48Copy full SHA for 1999b48
include/gsl/span
@@ -581,12 +581,18 @@ public:
581
constexpr iterator begin() const noexcept
582
{
583
const auto data = storage_.data();
584
+ // clang-format off
585
+ GSL_SUPPRESS(bounds.1) // NO-FORMAT: attribute
586
+ // clang-format on
587
return {data, data + size(), data};
588
}
589
590
constexpr iterator end() const noexcept
591
592
593
594
595
596
const auto endData = data + storage_.size();
597
return {data, endData, endData};
598
0 commit comments