mirror of
				https://bitbucket.org/mfeemster/fractorium.git
				synced 2025-11-03 17:50:27 -05:00 
			
		
		
		
	Merge pull request #15 from gh2k/gcc-template-pedantism
Fix pedantic gcc error about missing template keyword
This commit is contained in:
		@ -1488,9 +1488,9 @@ void RendererCL<T>::FillSeeds()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	for (auto& seed : m_Seeds)
 | 
						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;
 | 
							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;
 | 
							start += delta;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user