Fixed schemas inheriting namespace from included schemas.

Change-Id: Ib561430b235eddf4bfe20f68409e1dfdb359ef2b
Tested: on Linux.
This commit is contained in:
Wouter van Oortmerssen 2015-05-11 10:53:54 -07:00
parent 221193eaa2
commit 8896587faf
1 changed files with 2 additions and 0 deletions

View File

@ -1185,6 +1185,8 @@ bool Parser::Parse(const char *source, const char **include_paths,
}
Expect(';');
}
// Start with a blank namespace just in case this file doesn't have one.
namespaces_.push_back(new Namespace());
// Now parse all other kinds of declarations:
while (token_ != kTokenEof) {
if (proto_mode_) {