Add missing semicolon. Fixes issue 179.

This commit is contained in:
castano 2012-09-05 04:06:37 +00:00
parent 63897b3ecc
commit 15f5e19d40

View File

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