From 824721a7533de893338ed5bbc8e8d9f4fb1ad716 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Mon, 1 Jan 2018 15:52:37 +0300 Subject: [PATCH] Trim trailing spaces. --- include/boost/detail/allocator_utilities.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/detail/allocator_utilities.hpp b/include/boost/detail/allocator_utilities.hpp index 868d712..11eecbe 100644 --- a/include/boost/detail/allocator_utilities.hpp +++ b/include/boost/detail/allocator_utilities.hpp @@ -122,10 +122,10 @@ struct rebinder struct result { #ifdef BOOST_NO_CXX11_ALLOCATOR - typedef typename Allocator::BOOST_NESTED_TEMPLATE + typedef typename Allocator::BOOST_NESTED_TEMPLATE rebind::other other; #else - typedef typename std::allocator_traits::BOOST_NESTED_TEMPLATE + typedef typename std::allocator_traits::BOOST_NESTED_TEMPLATE rebind_alloc other; #endif }; @@ -164,7 +164,7 @@ void construct(void* p,const Type& t) */ #pragma warning(push) -#pragma warning(disable:4100) +#pragma warning(disable:4100) #endif template