diff options
| author | Tyge Lovset <[email protected]> | 2023-05-23 14:33:24 +0200 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2023-05-23 14:33:24 +0200 |
| commit | f80a78239f545d7d73c8358056dd5d5825ccfe0b (patch) | |
| tree | 83b3e266555f1d4bd42412ea5a711a49e3002396 /include | |
| parent | 0b34cadda2bc4da1cb0904989c8a5f2fe0236358 (diff) | |
| download | STC-modified-f80a78239f545d7d73c8358056dd5d5825ccfe0b.tar.gz STC-modified-f80a78239f545d7d73c8358056dd5d5825ccfe0b.zip | |
Updated docs to reflect changes in cstr linking shared.
Diffstat (limited to 'include')
| -rw-r--r-- | include/stc/carc.h | 1 | ||||
| -rw-r--r-- | include/stc/cbox.h | 1 | ||||
| -rw-r--r-- | include/stc/csmap.h | 1 | ||||
| -rw-r--r-- | include/stc/cvec.h | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/include/stc/carc.h b/include/stc/carc.h index 74205caf..756b604f 100644 --- a/include/stc/carc.h +++ b/include/stc/carc.h @@ -22,6 +22,7 @@ */ /* carc: atomic reference counted shared_ptr +#define i_implement #include <stc/cstr.h> typedef struct { cstr name, last; } Person; diff --git a/include/stc/cbox.h b/include/stc/cbox.h index 393b904b..699b32ac 100644 --- a/include/stc/cbox.h +++ b/include/stc/cbox.h @@ -23,6 +23,7 @@ */ /* cbox: heap allocated boxed type +#define i_implement #include <stc/cstr.h> typedef struct { cstr name, email; } Person; diff --git a/include/stc/csmap.h b/include/stc/csmap.h index fbfea8dd..e8138926 100644 --- a/include/stc/csmap.h +++ b/include/stc/csmap.h @@ -24,6 +24,7 @@ // Sorted/Ordered set and map - implemented as an AA-tree. /* #include <stdio.h> +#define i_implement #include <stc/cstr.h> #define i_tag sx // Sorted map<cstr, double> diff --git a/include/stc/cvec.h b/include/stc/cvec.h index 1a0fb118..512dbf67 100644 --- a/include/stc/cvec.h +++ b/include/stc/cvec.h @@ -22,6 +22,7 @@ */ /* +#define i_implement #include <stc/cstr.h> #include <stc/forward.h> |
