File: TODO.md

package info (click to toggle)
moarvm 2020.12%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 18,652 kB
  • sloc: ansic: 268,178; perl: 8,186; python: 1,316; makefile: 768; sh: 287
file content (14 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# To Do

- Work on fixing double-copy issue
  - Essentially everything is written to a `cmp_object_t` before it's written
    out to the caller, which is inefficient.  The reasoning for this is to not
    pollute the caller's environment should an error occur, but in practice
    it's probably better to say, "you can't trust the contents of output
    arguments you pass to CMP if the call fails".

- Build real docs
  - Probably still just a Markdown file, but still, things have gotten complex
    enough that `cmp.h` and `README.md` don't really cover it anymore.

- Prevent users from using extended types < 0 (reserved by MessagePack)