Properly scope the compiler includes to the Bscript folder. (#360)

This commit is contained in:
Kevin Eady 2021-02-25 16:53:22 +01:00 committed by GitHub
parent 57067e198e
commit 0cd9412066
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
217 changed files with 736 additions and 736 deletions

View file

@ -1,11 +1,11 @@
#include "ModuleProcessor.h"
#include "compiler/Profile.h"
#include "compiler/ast/ConstDeclaration.h"
#include "compiler/ast/ModuleFunctionDeclaration.h"
#include "compiler/astbuilder/BuilderWorkspace.h"
#include "compiler/file/SourceFile.h"
#include "compiler/model/CompilerWorkspace.h"
#include "bscript/compiler/Profile.h"
#include "bscript/compiler/ast/ConstDeclaration.h"
#include "bscript/compiler/ast/ModuleFunctionDeclaration.h"
#include "bscript/compiler/astbuilder/BuilderWorkspace.h"
#include "bscript/compiler/file/SourceFile.h"
#include "bscript/compiler/model/CompilerWorkspace.h"
namespace Pol::Bscript::Compiler
{