diff options
author | Kaushal Modi <kaushal.modi@gmail.com> | 2020-05-15 17:37:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 23:37:24 +0200 |
commit | bf0e1c696f6be96026d72838010ef8e63bd13238 (patch) | |
tree | a0d118be1d80e9e22099f9d8c5aa11cc4faa48b3 /tools/nimgrab.nim | |
parent | ce0552c1008c8292c550e7a973c580f416c005ca (diff) | |
download | Nim-bf0e1c696f6be96026d72838010ef8e63bd13238.tar.gz |
Remove the uses of {.procvar.} pragma (#14359)
This pragma did nothing. Ref: - https://github.com/nim-lang/Nim/issues/2172#issuecomment-383276469 - https://github.com/nim-lang/Nim/issues/12975
Diffstat (limited to 'tools/nimgrab.nim')
-rw-r--r-- | tools/nimgrab.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nimgrab.nim b/tools/nimgrab.nim index 937a5dcd4..ee5eced1e 100644 --- a/tools/nimgrab.nim +++ b/tools/nimgrab.nim @@ -5,7 +5,7 @@ when defined(windows): proc syncDownload(url, file: string) = proc progress(status: DownloadStatus, progress: uint, total: uint, - message: string) {.procvar, gcsafe.} = + message: string) {.gcsafe.} = echo "Downloading " & url let t = total.BiggestInt if t != 0: |