From ac11ae9890786678325e6d02795fed9f60b631d2 Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Thu, 8 May 2014 11:53:50 -0700 Subject: [PATCH] Add test case for BOOST_NO_CXX11_ALLOCATOR --- test/boost_no_cxx11_allocator.ipp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/boost_no_cxx11_allocator.ipp b/test/boost_no_cxx11_allocator.ipp index 07eb35e0..84ec78ee 100644 --- a/test/boost_no_cxx11_allocator.ipp +++ b/test/boost_no_cxx11_allocator.ipp @@ -31,11 +31,13 @@ int test() std::allocator ia; std::allocator_traits >::rebind_alloc ra(ia); std::allocator* pva = &ra; + std::allocator_traits >::rebind_traits::pointer pt; (void)aat; (void)ua; (void)at; (void)pva; + (void)pt; return 0; }