Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r66608 - sandbox/function/boost/function/detail
From: dsaritz_at_[hidden]
Date: 2010-11-16 03:28:51


Author: psiha
Date: 2010-11-16 03:28:48 EST (Tue, 16 Nov 2010)
New Revision: 66608
URL: http://svn.boost.org/trac/boost/changeset/66608

Log:
Minor stylistic changes.
Text files modified:
   sandbox/function/boost/function/detail/platform_specifics.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/function/boost/function/detail/platform_specifics.hpp
==============================================================================
--- sandbox/function/boost/function/detail/platform_specifics.hpp (original)
+++ sandbox/function/boost/function/detail/platform_specifics.hpp 2010-11-16 03:28:48 EST (Tue, 16 Nov 2010)
@@ -31,6 +31,8 @@
 
 #if defined( BOOST_MSVC )
 
+ #define BF_TAKES_FUNCTION_REFERENCES
+
     #define BF_NOVTABLE __declspec( novtable )
     #define BF_NOTHROW __declspec( nothrow )
     #define BF_NOALIAS __declspec( noalias )
@@ -58,8 +60,6 @@
     #define BF_UNREACHABLE_CODE BOOST_ASSERT( !"This code should not be reached." ); __assume( false );
     #define BF_ASSUME( condition ) BOOST_ASSERT( condition ); __assume( condition )
 
- #define BF_TAKES_FUNCTION_REFERENCES
-
     #define BF_GNU_SPECIFIC( expression )
     #define BF_MSVC_SPECIFIC( expression ) expression
 
@@ -81,7 +81,7 @@
         #define BF_SELECTANY
     #endif
 
- #define BF_CDECL __attribute__(( cdecl ))
+ #define BF_CDECL __attribute__(( cdecl ))
     #define BF_FASTCALL __attribute__(( fastcall ))
 
     #define BF_RESTRICT


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk