diff options
| author | Tyge Løvset <[email protected]> | 2021-01-02 10:53:39 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-01-02 10:53:39 +0100 |
| commit | fd40bc8cb9fa802bf8bac5afda7fa07851b514fd (patch) | |
| tree | 2deb7c2131e52e9cce054709ddaaa8eab20387c6 /examples | |
| parent | a4a690205c421fc0cb56787df65588ffc9d6ebd2 (diff) | |
| download | STC-modified-fd40bc8cb9fa802bf8bac5afda7fa07851b514fd.tar.gz STC-modified-fd40bc8cb9fa802bf8bac5afda7fa07851b514fd.zip | |
INternal: more moved template args
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/advanced.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/advanced.c b/examples/advanced.c index a79caaee..b3f2f380 100644 --- a/examples/advanced.c +++ b/examples/advanced.c @@ -50,8 +50,8 @@ Viking viking_fromVw(VikingVw vw) { } // Using the full using_cmap() macro to define [Viking -> int] hash map type: -using_cmap(vk, Viking, int, c_default_del, vikingvw_equals, vikingvw_hash, - viking_del, VikingVw, viking_fromVw, viking_toVw); +using_cmap(vk, Viking, int, c_default_del, vikingvw_equals, vikingvw_hash, viking_del, + viking_fromVw, viking_toVw, VikingVw); // cmap_vk uses vikingvw_hash() for hash value calculations, and vikingvw_equals() for equality test. // cmap_vk_del() will free all memory allocated for Viking keys and the hash table values. |
