- fixed: outertokencount must be reset after an #import directive, so that the position check for the inner #library finds the correct value.

This commit is contained in:
Christoph Oelckers 2016-01-29 09:59:12 +01:00
parent 76b8552d4d
commit 0f40a7aebe

View file

@ -496,6 +496,7 @@ static void Outside(void)
break;
case TK_IMPORT:
OuterImport();
outertokencount = 0;
break;
case TK_LIBRARY:
if (outertokencount != 1)