Ticket #7693: sp_counted_base.hpp.patch

File sp_counted_base.hpp.patch, 907 bytes (added by rockdreamer@…, 10 years ago)

patch to reorder #ifdefs in order to handle aCC before gcc

  • boost/smart_ptr/detail/sp_counted_base.hpp

     
    3535#elif defined( __GNUC__ ) && ( defined( __i386__ ) || defined( __x86_64__ ) )
    3636# include <boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp>
    3737
     38#elif defined(__HP_aCC) && defined(__ia64)
     39# include <boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>
     40
    3841#elif defined( __GNUC__ ) && defined( __ia64__ ) && !defined( __INTEL_COMPILER )
    3942# include <boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp>
    4043
    41 #elif defined(__HP_aCC) && defined(__ia64)
    42 # include <boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp>
    43 
    4444#elif defined( __IBMCPP__ ) && defined( __powerpc )
    4545# include <boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp>
    4646