diff options
author | Sizhe Zhao <prc.zhao@outlook.com> | 2020-06-27 22:51:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 16:51:48 +0200 |
commit | ad00d616e8ed3dc3e7b1e8fb4a8681e5b4eca0e8 (patch) | |
tree | f7764b08157d862dca5ac5333be10eb7e116d9ed | |
parent | 90808877c54a3822a978124f39f470ea95e37d4d (diff) | |
download | Nim-ad00d616e8ed3dc3e7b1e8fb4a8681e5b4eca0e8.tar.gz |
Warn about calling wrappers at compile time until #14049 is fixed. (#14828)
-rw-r--r-- | doc/manual.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index da50e2c56..9f5252ae0 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -843,7 +843,10 @@ language features: * closure iterators * the ``cast`` operator * reference (pointer) types -* the FFI +* FFI + +The use of wrappers that use FFI and/or ``cast`` is also disallowed. Note that +these wrappers include the ones in the standard libraries. Some or all of these restrictions are likely to be lifted over time. |