From 305e250be76ca7dfa57d0d56c3f72977881f7dec Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Thu, 3 Oct 2024 16:18:49 -0400 Subject: [PATCH] Add known issue for pointer types using too much indirection --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d295046..6d427a2 100644 --- a/README.md +++ b/README.md @@ -1127,9 +1127,10 @@ The project author is aware of these issues and plans to fix them in a future release: - When generating docs with codox in a library that depends on coffi, the below error will be produced. A temporary workaround is to add an explicit dependency in your codox build on insn at version 0.2.1 -``` clojure -Unable to find static field: ACC_OPEN in interface org.objectweb.asm.Opcodes -``` + ``` + Unable to find static field: ACC_OPEN in interface org.objectweb.asm.Opcodes + ``` +- Pointer wrapper types like `[::mem/pointer ::mem/int]` currently use one too many layers of indirection. This is fixed on develop. ## Future Plans These features are planned for future releases.