From 6ed07733cba5f13abf631642a171aa9b3209a098 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Mon, 4 Feb 2002 08:00:20 +0000 Subject: [PATCH] Fix atomic_count.hpp includes, convert Macintosh newlines to Unix ones, since Metrowerks supports either and the rest of Boost uses Unix ones. [SVN r12683] --- include/boost/detail/atomic_count.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/detail/atomic_count.hpp b/include/boost/detail/atomic_count.hpp index 0f33ac4..6486755 100644 --- a/include/boost/detail/atomic_count.hpp +++ b/include/boost/detail/atomic_count.hpp @@ -91,15 +91,15 @@ typedef long atomic_count; #elif defined(WIN32) || defined(_WIN32) || defined(__WIN32__) -#include "atomic_count_win32.hpp" +#include #elif defined(linux) || defined(__linux) || defined(__linux__) -#include "atomic_count_linux.hpp" +#include #elif defined(BOOST_HAS_PTHREADS) -#include "atomic_count_pthreads.hpp" +#include #else