summaryrefslogtreecommitdiffhomepage
path: root/docs/cdeq_api.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-12-30 11:17:30 +0100
committerTyge Løvset <[email protected]>2020-12-30 11:17:30 +0100
commit2b46410ef5bb28c4551cdd422c5e22731bd6b610 (patch)
tree03408e3fb036ca610b81e2dccdbec9740605b074 /docs/cdeq_api.md
parente2de45078c5e668ed9fd0515eb8face9170b9f70 (diff)
downloadSTC-modified-2b46410ef5bb28c4551cdd422c5e22731bd6b610.tar.gz
STC-modified-2b46410ef5bb28c4551cdd422c5e22731bd6b610.zip
API change: Swapped destroy <-> compare function args in using_*() macros for cvec, cdeq, cptr and clist.
Diffstat (limited to 'docs/cdeq_api.md')
-rw-r--r--docs/cdeq_api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md
index db9051f9..9f72406f 100644
--- a/docs/cdeq_api.md
+++ b/docs/cdeq_api.md
@@ -5,8 +5,8 @@ This describes the API of vector type **cdeq**.
## Declaration
```c
-#define using_cdeq(X, Value, valueDestroy=c_default_del,
- valueCompareRaw=c_default_compare,
+#define using_cdeq(X, Value, valueCompareRaw=c_default_compare,
+ valueDestroy=c_default_del,
RawValue=Value,
valueToRaw=c_default_to_raw,
valueFromRaw=c_default_from_raw)