Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r76773 - trunk/boost/math/special_functions/detail
From: john_at_[hidden]
Date: 2012-01-29 07:27:53


Author: johnmaddock
Date: 2012-01-29 07:27:53 EST (Sun, 29 Jan 2012)
New Revision: 76773
URL: http://svn.boost.org/trac/boost/changeset/76773

Log:
Use underscores in attribute names.
Fixes #6411.
Text files modified:
   trunk/boost/math/special_functions/detail/lanczos_sse2.hpp | 5 ++++-
   1 files changed, 4 insertions(+), 1 deletions(-)

Modified: trunk/boost/math/special_functions/detail/lanczos_sse2.hpp
==============================================================================
--- trunk/boost/math/special_functions/detail/lanczos_sse2.hpp (original)
+++ trunk/boost/math/special_functions/detail/lanczos_sse2.hpp 2012-01-29 07:27:53 EST (Sun, 29 Jan 2012)
@@ -13,7 +13,7 @@
 #include <emmintrin.h>
 
 #if defined(__GNUC__) || defined(__PGI)
-#define ALIGN16 __attribute__((aligned(16)))
+#define ALIGN16 __attribute__((__aligned__(16)))
 #else
 #define ALIGN16 __declspec(align(16))
 #endif
@@ -194,8 +194,11 @@
 } // namespace math
 } // namespace boost
 
+#undef ALIGN16
+
 #endif // BOOST_MATH_SPECIAL_FUNCTIONS_LANCZOS
 
 
 
 
+


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