Fix pedantic gcc error about missing template keyword

This commit is contained in:
Simon Detheridge 2015-05-27 15:51:21 +01:00
parent cb54605878
commit 5707617312

View File

@ -1488,9 +1488,9 @@ void RendererCL<T>::FillSeeds()
for (auto& seed : m_Seeds)
{
seed.x = (uint)m_Rand[0].Frand<double>(start, start + delta);
seed.x = (uint)m_Rand[0].template Frand<double>(start, start + delta);
start += delta;
seed.y = (uint)m_Rand[0].Frand<double>(start, start + delta);
seed.y = (uint)m_Rand[0].template Frand<double>(start, start + delta);
start += delta;
}
}