From 46eafa520d518497a0cd229db212381c38469867 Mon Sep 17 00:00:00 2001 From: Azusa Yamaguchi Date: Sun, 14 Jun 2015 00:48:41 +0100 Subject: [PATCH] fix no compile --- lib/AlignedAllocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AlignedAllocator.h b/lib/AlignedAllocator.h index 0e74e842..fd7bbb78 100644 --- a/lib/AlignedAllocator.h +++ b/lib/AlignedAllocator.h @@ -33,7 +33,7 @@ public: ~alignedAllocator() throw() { } pointer address(reference __x) const { return &__x; } - const_pointer address(const_reference __x) const { return &__x; } + // const_pointer address(const_reference __x) const { return &__x; } size_type max_size() const throw() { return size_t(-1) / sizeof(_Tp); }