Fix missing variable name in concept checks.

This commit is contained in:
jzmaddock
2016-08-07 18:33:59 +01:00
parent d1b3e9f36d
commit 0f128c2a89

View File

@ -102,7 +102,7 @@ public:
pointer address(reference r){ return &r; }
const_pointer address(const_reference r) { return &r; }
pointer allocate(size_type n) { return static_cast<pointer>(std::malloc(n)); }
pointer allocate(size_type, pointer) { return static_cast<pointer>(std::malloc(n)); }
pointer allocate(size_type n, pointer) { return static_cast<pointer>(std::malloc(n)); }
void deallocate(pointer p, size_type) { std::free(p); }
size_type max_size()const { return UINT_MAX; }