Add missing semicolon. Fixes issue 179.

This commit is contained in:
castano 2012-09-05 04:06:37 +00:00
parent a6635c82d6
commit e2aed3a915

View File

@ -253,7 +253,7 @@ namespace nv
template <typename T>
void Array<T>::fill(const T & elem)
{
fill(m_buffer, m_size, elem)
fill(m_buffer, m_size, elem);
}
// Clear the buffer.