update CheckClash for string accesses

This commit is contained in:
rw 2015-05-09 15:37:13 -07:00
parent d756efbf76
commit 5d68493df4
1 changed files with 2 additions and 0 deletions

View File

@ -947,6 +947,8 @@ void Parser::ParseDecl() {
CheckClash("Type", BASE_TYPE_UNION);
CheckClash("_length", BASE_TYPE_VECTOR);
CheckClash("Length", BASE_TYPE_VECTOR);
CheckClash("_byte_vector", BASE_TYPE_STRING);
CheckClash("ByteVector", BASE_TYPE_STRING);
Expect('}');
}