Remove unused vars
[libcds.git] / tests / unit / michael_alloc.h
index 0a4168f186825645b6ddc3c0aafbf6e5918332f5..745438709e06c2ddd268c0dfb58f357b7b4fd1d5 100644 (file)
@@ -28,13 +28,13 @@ namespace memory {
         typedef typename std_allocator::value_type      value_type;
 
         // Allocation function
-        pointer allocate( size_type _Count, const void* _Hint = nullptr )
+        pointer allocate( size_type _Count, const void* /*_Hint*/ = nullptr )
         {
             return reinterpret_cast<pointer>( s_MichaelHeap.alloc( sizeof(T) * _Count ));
         }
 
         // Deallocation function
-        void deallocate( pointer _Ptr, size_type _Count )
+        void deallocate( pointer _Ptr, size_type /*_Count*/ )
         {
             s_MichaelHeap.free( _Ptr );
         }