From 8802498ed57248a31a201ec74d52cb2cea733b8b Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Fri, 4 Mar 2011 19:40:14 +0100 Subject: [PATCH] swap() moved in correct namespace --- boost/fiber/asym_fiber.hpp | 8 ++++---- boost/fiber/sym_fiber.hpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/boost/fiber/asym_fiber.hpp b/boost/fiber/asym_fiber.hpp index b74cc79a..8846808d 100644 --- a/boost/fiber/asym_fiber.hpp +++ b/boost/fiber/asym_fiber.hpp @@ -207,16 +207,16 @@ public: } }; -} - -using fibers::asym_fiber; - inline void swap( asym_fiber & l, asym_fiber & r) { return l.swap( r); } } +using fibers::asym_fiber; + +} + # if defined(BOOST_MSVC) # pragma warning(pop) # endif diff --git a/boost/fiber/sym_fiber.hpp b/boost/fiber/sym_fiber.hpp index 148f9581..5ea7fa3a 100644 --- a/boost/fiber/sym_fiber.hpp +++ b/boost/fiber/sym_fiber.hpp @@ -255,16 +255,16 @@ public: } }; -} - -using fibers::sym_fiber; - inline void swap( sym_fiber & l, sym_fiber & r) { return l.swap( r); } } +using fibers::sym_fiber; + +} + # if defined(BOOST_MSVC) # pragma warning(pop) # endif