From e2aed3a915efa5ad57f1c0c4b192c7996aab670d Mon Sep 17 00:00:00 2001 From: castano Date: Wed, 5 Sep 2012 04:06:37 +0000 Subject: [PATCH] Add missing semicolon. Fixes issue 179. --- trunk/src/nvcore/Array.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/nvcore/Array.inl b/trunk/src/nvcore/Array.inl index fefa19e..a59dd89 100755 --- a/trunk/src/nvcore/Array.inl +++ b/trunk/src/nvcore/Array.inl @@ -253,7 +253,7 @@ namespace nv template void Array::fill(const T & elem) { - fill(m_buffer, m_size, elem) + fill(m_buffer, m_size, elem); } // Clear the buffer.