Require array to be completely sized
| 5605 | // Require array to be completely sized |
| 5606 | // |
| 5607 | void TParseContext::arraySizeRequiredCheck(const TSourceLoc& loc, const TArraySizes& arraySizes) |
| 5608 | { |
| 5609 | if (!parsingBuiltins && arraySizes.hasUnsized()) |
| 5610 | error(loc, "array size required", "", ""); |
| 5611 | } |
| 5612 | |
| 5613 | void TParseContext::structArrayCheck(const TSourceLoc& /*loc*/, const TType& type) |
| 5614 | { |
no test coverage detected