C++: replace getType().getUnspecifiedType()

This commit is contained in:
Robert Marsh
2019-05-20 15:08:28 +01:00
parent a72fff7ed0
commit e899120270
55 changed files with 177 additions and 177 deletions

View File

@@ -6,7 +6,7 @@ import cpp
from AnalysedString s, string str
where
if s.(StringLiteral).getType().getUnspecifiedType().(DerivedType).getBaseType() instanceof Wchar_t then (
if s.(StringLiteral).getUnspecifiedType().(DerivedType).getBaseType() instanceof Wchar_t then (
str = "[?]"
) else (
str = s.toString()