diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-28 23:25:32 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-28 23:25:32 -0800 |
commit | b08450c208bc14d15e96726dac0d7b6e278f05ac (patch) | |
tree | 826bfd896e4ef5453542f1164b2f13f892b706ac | |
parent | 04209f7233b175389966b59a43470da287c91b4e (diff) | |
download | mu-b08450c208bc14d15e96726dac0d7b6e278f05ac.tar.gz |
2503
-rw-r--r-- | 048check_type_by_name.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc index 41ff6263..1d4e7dc1 100644 --- a/048check_type_by_name.cc +++ b/048check_type_by_name.cc @@ -47,7 +47,6 @@ void deduce_missing_type(map<string, type_tree*>& type, map<string, string_tree* void check_type(map<string, type_tree*>& type, map<string, string_tree*>& type_name, const reagent& x, const recipe_ordinal r) { if (is_literal(x)) return; - if (is_raw(x)) return; // TODO: delete this // if you use raw locations you're probably doing something unsafe if (is_integer(x.name)) return; if (!x.type) return; // will throw a more precise error elsewhere |