Merge pull request #165 from rw/go-faster

Go speed improvements
This commit is contained in:
Robert
2015-05-12 14:53:31 -07:00
7 changed files with 206 additions and 30 deletions

View File

@@ -971,6 +971,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('}');
}