From ec67130557a7049663018cea120c338ae1676f0a Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Thu, 29 Aug 2019 04:04:09 -0400 Subject: [PATCH] Correct include order --- include/boost/functional/factory.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/functional/factory.hpp b/include/boost/functional/factory.hpp index 4e0e1ba..a7cd9d7 100644 --- a/include/boost/functional/factory.hpp +++ b/include/boost/functional/factory.hpp @@ -10,10 +10,10 @@ Distributed under the Boost Software License, Version 1.0. #ifndef BOOST_FUNCTIONAL_FACTORY_HPP #define BOOST_FUNCTIONAL_FACTORY_HPP +#include #include #include #include -#include #if !defined(BOOST_NO_CXX11_ALLOCATOR) #include #endif @@ -141,15 +141,15 @@ public: private: typedef typename fc_pointer::type pointer; - fc_allocate(const fc_allocate&); - fc_allocate& operator=(const fc_allocate&); - pointer release() BOOST_NOEXCEPT { pointer p = p_; p_ = pointer(); return p; } + fc_allocate(const fc_allocate&); + fc_allocate& operator=(const fc_allocate&); + A a_; pointer p_; };