diff options
author | patrick dw <algorithicimperative@gmail.com> | 2015-06-06 12:01:26 -0500 |
---|---|---|
committer | patrick dw <algorithicimperative@gmail.com> | 2015-06-06 12:01:26 -0500 |
commit | ff83efa76772eb108ef445e0bb815b49f39c7faa (patch) | |
tree | d86fc45a5d0c404dcb042e7eb368980e2cf261de /lib/wrappers/libffi | |
parent | 13163ff13f65fdde3d7af13496e99fb88917c99c (diff) | |
download | Nim-ff83efa76772eb108ef445e0bb815b49f39c7faa.tar.gz |
Fixed malformed pragma
Diffstat (limited to 'lib/wrappers/libffi')
-rw-r--r-- | lib/wrappers/libffi/libffi.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wrappers/libffi/libffi.nim b/lib/wrappers/libffi/libffi.nim index d7e11a20c..34b91f8c7 100644 --- a/lib/wrappers/libffi/libffi.nim +++ b/lib/wrappers/libffi/libffi.nim @@ -60,7 +60,7 @@ else: type Arg* = int SArg* = int -{deprecated: [TArg: Arg, TSArg: SArg].} +{.deprecated: [TArg: Arg, TSArg: SArg].} when defined(windows) and defined(x86): type |