2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 02:27:43 +00:00

Template instantiation rampage (much lighter common headers)

This commit is contained in:
Jack Andersen
2016-03-01 21:29:19 -10:00
parent 7049ab2b1d
commit 496903047e
13 changed files with 4108 additions and 3795 deletions

View File

@@ -59,17 +59,20 @@ public:
HECL::Database::Project& getProject() const {return m_dataSpec.getProject();}
virtual HECL::ProjectPath getWorking(const UniqueID32&) const
{
LogDNACommon.report(LogVisor::FatalError, "PAKRouter IDType mismatch; expected UniqueID32 specialization");
LogDNACommon.report(LogVisor::FatalError,
"PAKRouter IDType mismatch; expected UniqueID32 specialization");
return HECL::ProjectPath();
}
virtual HECL::ProjectPath getWorking(const UniqueID64&) const
{
LogDNACommon.report(LogVisor::FatalError, "PAKRouter IDType mismatch; expected UniqueID64 specialization");
LogDNACommon.report(LogVisor::FatalError,
"PAKRouter IDType mismatch; expected UniqueID64 specialization");
return HECL::ProjectPath();
}
virtual HECL::ProjectPath getWorking(const UniqueID128&) const
{
LogDNACommon.report(LogVisor::FatalError, "PAKRouter IDType mismatch; expected UniqueID128 specialization");
LogDNACommon.report(LogVisor::FatalError,
"PAKRouter IDType mismatch; expected UniqueID128 specialization");
return HECL::ProjectPath();
}
};