It's at the end of the file:
should beinline bool CXFileReader::readRGBA(video::SColorf& color)
{
color.a = readFloat();
color.r = readFloat();
color.g = readFloat();
color.b = readFloat();
return checkForTwoFollowingSemicolons();
}
Thanks for fixing.inline bool CXFileReader::readRGBA(video::SColorf& color)
{
color.r = readFloat();
color.g = readFloat();
color.b = readFloat();
color.a = readFloat();
return checkForTwoFollowingSemicolons();
}