Fixed schemas inheriting namespace from included schemas.
Change-Id: Ib561430b235eddf4bfe20f68409e1dfdb359ef2b Tested: on Linux.
This commit is contained in:
parent
221193eaa2
commit
8896587faf
|
@ -1185,6 +1185,8 @@ bool Parser::Parse(const char *source, const char **include_paths,
|
||||||
}
|
}
|
||||||
Expect(';');
|
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:
|
// Now parse all other kinds of declarations:
|
||||||
while (token_ != kTokenEof) {
|
while (token_ != kTokenEof) {
|
||||||
if (proto_mode_) {
|
if (proto_mode_) {
|
||||||
|
|
Loading…
Reference in New Issue