Skip to content

Commit

Permalink
add missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
aG0aep6G committed Apr 26, 2016
1 parent e323667 commit 20801ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion changelog.dd
Expand Up @@ -12,7 +12,7 @@ $(BUGSTITLE Library Changes,
optimized path for ASCII inputs.)
$(LI $(XREF uni, isAlphaNum), which is analogous to $(XREF ascii, isAlphaNum)
was added.)
$(LI $(XREF regex, regex) now supports inline comments with (?#...) syntax.
$(LI $(XREF regex, regex) now supports inline comments with (?#...) syntax.)
$(LI std.regex had numerous optimization applied, compile-time $(XREF regex, ctRegex)
should now be generally faster then the run-time version.)
$(LI $(XREF regex, regex) now supports matching multiple patterns in one go.)
Expand Down Expand Up @@ -70,13 +70,17 @@ assert(m.front[1] == "12");
$(LI $(P $(XREF algorithm, mutation, swapAt) allows to swap elements
of a RandomAccessRange by their indices.
)
)

$(LI $(P $(XREF range, iota)'s `.length` property is now always returned as
`size_t`. This means if you are on a 32-bit CPU and you are using
iota to iterate 64-bit types, the length will be truncated to `size_t`.
In non-release mode, you will get an exception if the length exceeds
`size_t.max` in your call to `iota`.
)
)

)

Macros:
TITLE=Change Log
Expand Down

0 comments on commit 20801ad

Please sign in to comment.