summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-02-13 18:36:08 -0500
committerAdrian Thurston <thurston@complang.org>2015-02-13 18:36:08 -0500
commit7971f22167db5f108430e4735e4cc1b492e6bd9d (patch)
tree3a8d0f36a13b7fab5c13c3c5d44dcff859da649d /src/map.h
parentccf380421c08b6ec1f8b9c4ce6c62eb1fbf5e1e5 (diff)
downloadcolm-7971f22167db5f108430e4735e4cc1b492e6bd9d.tar.gz
work on value list and value map, can insert into vmap
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.h b/src/map.h
index 5ee76e0c..0009a833 100644
--- a/src/map.h
+++ b/src/map.h
@@ -67,7 +67,7 @@ Tree *mapStore( Program *prg, Map *map, Tree *key, Tree *element );
MapEl *colm_map_insert( Program *prg, Map *map, MapEl *mapEl );
void colm_map_detach( Program *prg, Map *map, MapEl *mapEl );
MapEl *colm_map_find( Program *prg, Map *map, Tree *key );
-
+MapEl *colm_vmap_insert( Program *prg, Map *map, Struct *key, Struct *value );
#if defined(__cplusplus)
}