Boost logo

Boost :

Subject: Re: [boost] [config] BOOST_FORCEINLINE for clang
From: Michel Morin (mimomorin_at_[hidden])
Date: 2013-05-12 09:59:21


John,

I replaced `always_inline` in boost/config/suffix.hpp with
`__always_inline__`
to avoid interference with a macro with the same name.

Committed in r84245 ( https://svn.boost.org/trac/boost/changeset/84245 ):
  --- boost/config/suffix.hpp (revision 84244)
  +++ boost/config/suffix.hpp (working copy)
  @@ -641,7 +641,7 @@
   # if defined(_MSC_VER)
   # define BOOST_FORCEINLINE __forceinline
   # elif defined(__GNUC__) && __GNUC__ > 3
  -# define BOOST_FORCEINLINE inline __attribute__ ((always_inline))
  +# define BOOST_FORCEINLINE inline __attribute__ ((__always_inline__))
   # else
   # define BOOST_FORCEINLINE inline
   # endif

Regards,
Michel


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk