interrogate: fix warning message caused by erroneously wrapped remap

Fixes: #191
This commit is contained in:
rdb 2017-11-11 20:35:49 +01:00
parent 3621bd64c5
commit 404842e70b

View File

@ -7176,7 +7176,7 @@ is_cpp_type_legal(CPPType *in_ctype) {
return true;
} else if (TypeManager::is_basic_string_wchar(type)) {
return true;
} else if (TypeManager::is_vector_unsigned_char(type)) {
} else if (TypeManager::is_vector_unsigned_char(in_ctype)) {
return true;
} else if (TypeManager::is_simple(type)) {
return true;