Skip to content

Commit

Permalink
Adapt to
Browse files Browse the repository at this point in the history
  • Loading branch information
c-blake committed May 12, 2023
1 parent e5c341e commit d1d4dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adix/cumsum.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{.push hint[LineTooLong]:off.} # Tabular readability trumps 80-col niceness
#{.push hint[LineTooLong]:off.} # Tabular readability trumps 80-col niceness
proc cumsum*[T](c: ptr UncheckedArray[T]; n: uint) =
for i in 1 ..< n:
c[i] += c[i - 1]
Expand Down

0 comments on commit d1d4dfd

Please sign in to comment.