From eb3a7835a13183843598c906331c66c3f8a3f327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Tue, 14 Apr 2015 15:22:15 +0200 Subject: [PATCH] Uncomment test code --- test/scoped_allocator_usage_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/scoped_allocator_usage_test.cpp b/test/scoped_allocator_usage_test.cpp index 61607e7..2e90205 100644 --- a/test/scoped_allocator_usage_test.cpp +++ b/test/scoped_allocator_usage_test.cpp @@ -31,7 +31,7 @@ class SimpleAllocator public: typedef Ty value_type; - SimpleAllocator(int value) + explicit SimpleAllocator(int value) : m_state(value) {} @@ -388,7 +388,7 @@ bool one_level_allocator_propagation_test() } int main() -{/* +{ //unique assoc if(!one_level_allocator_propagation_test()) return 1; @@ -406,7 +406,7 @@ int main() if(!one_level_allocator_propagation_test()) return 1; if(!one_level_allocator_propagation_test()) - return 1;*/ + return 1; //sequence containers if(!one_level_allocator_propagation_test()) return 1;