Commit 5d68493d authored by rw's avatar rw

update CheckClash for string accesses

parent d756efbf
...@@ -947,6 +947,8 @@ void Parser::ParseDecl() { ...@@ -947,6 +947,8 @@ void Parser::ParseDecl() {
CheckClash("Type", BASE_TYPE_UNION); CheckClash("Type", BASE_TYPE_UNION);
CheckClash("_length", BASE_TYPE_VECTOR); CheckClash("_length", BASE_TYPE_VECTOR);
CheckClash("Length", BASE_TYPE_VECTOR); CheckClash("Length", BASE_TYPE_VECTOR);
CheckClash("_byte_vector", BASE_TYPE_STRING);
CheckClash("ByteVector", BASE_TYPE_STRING);
Expect('}'); Expect('}');
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment