Remove double entry for thiscall (#14842)

This commit is contained in:
Danil Yarantsev
2020-06-28 19:00:43 +03:00
committed by GitHub
parent d9c1501757
commit c285739d55

View File

@@ -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.