| 887 | } |
| 888 | |
| 889 | __forceinline bool TypeDecl::isBitfield() const { |
| 890 | return ((baseType==Type::tBitfield) || (baseType==Type::tBitfield8) || |
| 891 | (baseType==Type::tBitfield16) || (baseType==Type::tBitfield64)) |
| 892 | && (dim.size()==0); |
| 893 | } |
| 894 | |
| 895 | __forceinline bool TypeDecl::isIterator() const { |
| 896 | return (baseType==Type::tIterator) && (dim.size()==0); |
no test coverage detected