[qwaq] Clean up some debug output

Some leftover prints from getting geometric algebra support working in
qdb.
This commit is contained in:
Bill Currie 2024-02-09 15:56:27 +09:00
parent 40f04ff33e
commit 7509916d71
2 changed files with 2 additions and 2 deletions

View file

@ -201,7 +201,7 @@ static void type_free (void *t, void *unused)
}
goto error;
hash_type:
printf ("fetched type %s\n", type.encoding);
//printf ("fetched type %s\n", type.encoding);
Hash_Add (dynamic_encodings, type);
return type;
// not a valid type

View file

@ -38,7 +38,7 @@ static string type_views[] = {
&& type.type < sizeof(type_views) / sizeof (type_views[0])) {
typename = type_views[type.type];
}
printf ("AlgebraView: %s\n", typename);
//printf ("AlgebraView: %s\n", typename);
id class = obj_lookup_class (typename);
if (class) {
return [class withDef:def in:data type:type];