Fix unused variable warning.

llvm-svn: 91609
This commit is contained in:
Eric Christopher 2009-12-17 19:07:19 +00:00
parent f3927b7994
commit 2d1ffe028f
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ public:
SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
// No need to do a destroy loop for POD's.
static void destroy_range(T *S, T *E) {}
static void destroy_range(T *, T *) {}
/// uninitialized_copy - Copy the range [I, E) onto the uninitialized memory
/// starting with "Dest", constructing elements into it as needed.