Add forward declaration needed on clang

Signed-off-by: Jeremy Ong <jcong@amazon.com>
This commit is contained in:
Jeremy Ong
2021-08-04 03:32:49 -06:00
parent 4d058f329b
commit d2f2a186cb
2 changed files with 2 additions and 1 deletions
@@ -43,7 +43,7 @@ namespace AZ
uint32_t Release();
private:
friend class JobGraph;
friend class ::AZ::JobGraph;
friend class JobWorker;
AZStd::vector<TypeErasedJob> m_jobs;
@@ -24,6 +24,7 @@ namespace AZ
class CompiledJobGraph;
}
class JobExecutor;
class JobGraph;
// A JobToken is returned each time a Job is added to the JobGraph. JobTokens are used to
// express dependencies between jobs within the graph.