Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86103 - trunk/boost
From: steveire_at_[hidden]
Date: 2013-10-01 04:41:55


Author: skelly
Date: 2013-10-01 04:41:55 EDT (Tue, 01 Oct 2013)
New Revision: 86103
URL: http://svn.boost.org/trac/boost/changeset/86103

Log:
aligned_storage: Remove obsolete GCC version check.

Text files modified:
   trunk/boost/aligned_storage.hpp | 14 --------------
   1 files changed, 0 insertions(+), 14 deletions(-)

Modified: trunk/boost/aligned_storage.hpp
==============================================================================
--- trunk/boost/aligned_storage.hpp Tue Oct 1 04:41:42 2013 (r86102)
+++ trunk/boost/aligned_storage.hpp 2013-10-01 04:41:55 EDT (Tue, 01 Oct 2013) (r86103)
@@ -96,25 +96,11 @@
             )
         );
 
-#if defined(__GNUC__) &&\
- (__GNUC__ > 3) ||\
- (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 ||\
- (__GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ >=3)))
-
 private: // noncopyable
 
     aligned_storage(const aligned_storage&);
     aligned_storage& operator=(const aligned_storage&);
 
-#else // gcc less than 3.2.3
-
-public: // _should_ be noncopyable, but GCC compiler emits error
-
- aligned_storage(const aligned_storage&);
- aligned_storage& operator=(const aligned_storage&);
-
-#endif // gcc < 3.2.3 workaround
-
 public: // structors
 
     aligned_storage()


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