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

Fixed placement new detection for GCC 4

This commit is contained in:
Michael Stevens
2005-01-03 20:52:27 +00:00
parent 64ba0a49c4
commit 6223101ef2

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