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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user