Fix build?

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2017-10-22 12:37:30 -03:00
parent 7a2e52b12d
commit b0c5bf2156
+15
View File
@@ -346,6 +346,21 @@ std::vector<std::string> getConstants(AttributeStep)
return attributeSteps.getNames();
}
bool getConstant(const char *in, DataType &out)
{
return dataTypes.find(in, out);
}
bool getConstant(DataType in, const char *&out)
{
return dataTypes.find(in, out);
}
std::vector<std::string> getConstants(DataType)
{
return dataTypes.getNames();
}
} // vertex
} // graphics
} // love