| 1247 | //----------------------------------------------------------------------------- |
| 1248 | |
| 1249 | QualType GetType(QualType t) |
| 1250 | { |
| 1251 | if(GetInsightsOptions().UseShow2C and t->isReferenceType()) { |
| 1252 | return GetGlobalAST().getPointerType(t.getNonReferenceType()); |
| 1253 | } |
| 1254 | |
| 1255 | return t; |
| 1256 | } |
| 1257 | //----------------------------------------------------------------------------- |
| 1258 | |
| 1259 | template<typename QT, typename SUB_T, typename SUB_T2 = void> |
no outgoing calls
no test coverage detected