~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/mpl/aux_/integral_wrapper.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
// Copyright Aleksey Gurtovoy 2000-2004
 
2
// Copyright Aleksey Gurtovoy 2000-2006
3
3
//
4
4
// Distributed under the Boost Software License, Version 1.0. 
5
5
// (See accompanying file LICENSE_1_0.txt or copy at 
7
7
//
8
8
// See http://www.boost.org/libs/mpl for documentation.
9
9
 
10
 
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/integral_wrapper.hpp,v $
11
 
// $Date: 2004/09/02 15:40:43 $
12
 
// $Revision: 1.10 $
 
10
// $Id: integral_wrapper.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
 
11
// $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $
 
12
// $Revision: 49267 $
13
13
 
14
14
// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION!
15
15
 
65
65
    typedef AUX_WRAPPER_INST(prior_value) prior;
66
66
#elif BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x561)) \
67
67
    || BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(502)) \
68
 
    || BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800))
 
68
    || (BOOST_WORKAROUND(__HP_aCC, <= 53800) && (BOOST_WORKAROUND(__hpxstd98, != 1)))
69
69
    typedef AUX_WRAPPER_INST( BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N + 1)) ) next;
70
70
    typedef AUX_WRAPPER_INST( BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N - 1)) ) prior;
71
71
#else