1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-03 20:39:40 +00:00
openmw/apps/mwcompiler/context.cpp

21 lines
319 B
C++

#include "context.hpp"
namespace SACompiler
{
bool Context::canDeclareLocals() const
{
return true;
}
char Context::getGlobalType (const std::string& name) const
{
return ' ';
}
bool Context::isId (const std::string& name) const
{
return false;
}
}