diff options
| author | Tyge Løvset <[email protected]> | 2021-01-30 23:05:36 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-01-30 23:05:36 +0100 |
| commit | b3d9e68fa2c2ec9ebe7e3f08045d01db5b720eea (patch) | |
| tree | 100c3d8b5a2df433efd9cf148d3c66506f1d288b /examples/convert.c | |
| parent | 5c196be3cfa172ca521ced0cf5d9b7d0acec5b83 (diff) | |
| download | STC-modified-b3d9e68fa2c2ec9ebe7e3f08045d01db5b720eea.tar.gz STC-modified-b3d9e68fa2c2ec9ebe7e3f08045d01db5b720eea.zip | |
Internal changes: removed use of cmap_inits and set_inits. Use cmap_x_init() and cset_X_init(). Minor changes in cvec, csmap, cstr, crandom.
Diffstat (limited to 'examples/convert.c')
| -rw-r--r-- | examples/convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/convert.c b/examples/convert.c index f5dd5af6..25ae9dcd 100644 --- a/examples/convert.c +++ b/examples/convert.c @@ -12,7 +12,7 @@ using_clist_str(); int main()
{
- cmap_str map = cmap_inits;
+ cmap_str map = cmap_str_init();
cmap_str_emplace(&map, "green", "#00ff00");
cmap_str_emplace(&map, "blue", "#0000ff");
cmap_str_emplace(&map, "yellow", "#ffff00");
|
