Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Missed one U
  • Loading branch information
mika314 committed Aug 23, 2021
commit 259cb1b4bd50402fb9356a79a6f5555cf9dd017e
2 changes: 1 addition & 1 deletion contents/barnsley/code/c++/barnsley.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using Vec3 = std::array<double, 3>;
using Row = std::array<double, 3>;
using Op = std::array<Row, 3>;

constexpr auto OpN = 4;
constexpr auto OpN = 4U;

template <size_t N>
auto operator+(std::array<double, N> x, std::array<double, N> y) {
Expand Down