diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2020-06-28 19:00:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 18:00:43 +0200 |
commit | c285739d55408bb5f75d3190a286d18ac883bd41 (patch) | |
tree | 6017d35440d2e2bbf307893098e4bad66a672f5e | |
parent | d9c15017572afbbdfb8007bbaf33733b9ac69613 (diff) | |
download | Nim-c285739d55408bb5f75d3190a286d18ac883bd41.tar.gz |
Remove double entry for thiscall (#14842)
-rw-r--r-- | changelog.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md index de2e443fc..54996ea34 100644 --- a/changelog.md +++ b/changelog.md @@ -180,9 +180,7 @@ proc mydiv(a, b): int {.raises: [].} = The reason for this is that `DivByZeroDefect` inherits from `Defect` and with `--panics:on` `Defects` become unrecoverable errors. -- Added the `thiscall` calling convention as specified by Microsoft. - -- Added `thiscall` calling convention as specified by Microsoft, mostly for hooking purpose +- Added the `thiscall` calling convention as specified by Microsoft, mostly for hooking purpose - Deprecated `{.unroll.}` pragma, was ignored by the compiler anyways, was a nop. |