From 15f5e19d40e0494f442b6fb04484fdcd7fa69c27 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. --- src/nvcore/Array.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvcore/Array.inl b/src/nvcore/Array.inl index fefa19e..a59dd89 100755 --- a/src/nvcore/Array.inl +++ b/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.