about summary refs log tree commit diff stats
path: root/018type_abbreviations.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-12 23:06:37 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-12 23:06:37 -0700
commit17ec401647b89ed5b34974bf327d9c91fc29b7a4 (patch)
tree2236c9abba76e7858d7e922cd11022f944e2b5dd /018type_abbreviations.cc
parentdb01afa844004406da3a6ab9b306219c807e057e (diff)
downloadmu-17ec401647b89ed5b34974bf327d9c91fc29b7a4.tar.gz
3344
Diffstat (limited to '018type_abbreviations.cc')
-rw-r--r--018type_abbreviations.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/018type_abbreviations.cc b/018type_abbreviations.cc
index 03afe351..3087c828 100644
--- a/018type_abbreviations.cc
+++ b/018type_abbreviations.cc
@@ -123,11 +123,11 @@ void clear_type_abbreviations() {
 //:: A few default abbreviations.
 
 :(before "End Mu Types Initialization")
-put(Type_abbreviations, "&", new type_tree("address"));
-put(Type_abbreviations, "@", new type_tree("array"));
-put(Type_abbreviations, "num", new type_tree("number"));
-put(Type_abbreviations, "bool", new type_tree("boolean"));
-put(Type_abbreviations, "char", new type_tree("character"));
+put(Type_abbreviations, "&", new_type_tree("address"));
+put(Type_abbreviations, "@", new_type_tree("array"));
+put(Type_abbreviations, "num", new_type_tree("number"));
+put(Type_abbreviations, "bool", new_type_tree("boolean"));
+put(Type_abbreviations, "char", new_type_tree("character"));
 
 :(scenario use_type_abbreviations_when_declaring_type_abbreviations)
 type foo = &:num