2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-25 16:52:09 +00:00

Fixed placement new detection for GCC 4

svn path=/trunk/boost/boost/numeric/ublas/; revision=26621
This commit is contained in:
Michael Stevens
2005-01-03 20:52:27 +00:00
parent 8fc917e673
commit 64d0c82ee6

View File

@@ -106,7 +106,7 @@
// GNU Compiler Collection
#if defined (__GNUC__) && ! defined (BOOST_STRICT_CONFIG)
#if __GNUC__ >= 3 && __GNUC_MINOR__ >= 4
#if (__GNUC__ >= 4) || (__GNUC__ >= 3 && __GNUC_MINOR__ >= 4)
// By ABI definition see GCC bug id 9982
#define BOOST_UBLAS_USEFUL_ARRAY_PLACEMENT_NEW
#endif