diff options
| author | Tyge Løvset <[email protected]> | 2021-01-19 11:35:35 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-01-19 11:35:35 +0100 |
| commit | 7fa5cd3a4092991268276259fa07fda2bb12cfc1 (patch) | |
| tree | 14505201ef8303f55c7abc7114e8baf59afa399e /examples | |
| parent | fcc903e2b56301a5f8fa7a66921f23cbc06cd827 (diff) | |
| download | STC-modified-7fa5cd3a4092991268276259fa07fda2bb12cfc1.tar.gz STC-modified-7fa5cd3a4092991268276259fa07fda2bb12cfc1.zip | |
Switched template argument sequence for csmap. keyCompare always no. 3.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/stc_astar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/stc_astar.c b/examples/stc_astar.c index 1fa8e662..2d85ee73 100644 --- a/examples/stc_astar.c +++ b/examples/stc_astar.c @@ -67,8 +67,8 @@ typedef struct { using_cdeq(mp, MazePoint, mpoint_compare_priority);
using_cpque(mp, cdeq_mp, <);
-using_csmap(ms, MazePoint, MazePoint, c_default_del, c_default_clone, mpoint_key_compare); // step
-using_csmap(mc, MazePoint, int, c_default_del, c_default_clone, mpoint_key_compare); // cost
+using_csmap(ms, MazePoint, MazePoint, mpoint_key_compare); // step
+using_csmap(mc, MazePoint, int, mpoint_key_compare); // cost
cdeq_mp
|
