Skip to content

Commit 4443604

Browse files
committed
nolint
1 parent 84795c4 commit 4443604

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/fill.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ auto main() -> int { // NOLINT(readability-function-cognitive-complexity,bugpro
117117
namespace multi = boost::multi;
118118

119119
multi::array<int, 1> d1D = {10, 20, 30, 40};
120-
std::fill(d1D.begin(), d1D.end(), 420);
120+
std::fill(d1D.begin(), d1D.end(), 420); // NOLINT(modernize-use-ranges) for C++20
121121

122122
multi::array<int, 2> d2D = {
123123
{1500, 160, 170, 180, 190},

0 commit comments

Comments
 (0)