~ubuntu-branches/ubuntu/wily/deal.ii/wily-proposed

« back to all changes in this revision

Viewing changes to contrib/boost/include/boost/tr1/tr1/unordered_map

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV, Adam C. Powell, IV, Denis Barbier
  • Date: 2010-07-29 13:47:01 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100729134701-qk60t2om7u7oklkb
Tags: 6.3.1-1
[ Adam C. Powell, IV ]
* Changed to source format 3.0 (quilt).
* Changed maintainer to debian-science with Adam Powell as uploader.
* Added source lintian overrides about Adam Powell's name.
* Added Vcs info on git repository.
* Bumped Standards-Version.
* Changed stamp-patch to patch target and fixed its application criterion.
* Moved make_dependencies and expand_instantiations to a versioned directory
  to avoid shlib package conflicts.

[ Denis Barbier ]
* New upstream release (closes: #562332).
  + Added libtbb support.
  + Forward-ported all patches.
* Updates for new PETSc version, including workaround for different versions
  of petsc and slepc.
* Add debian/watch.
* Update to debhelper 7.
* Added pdebuild patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  (C) Copyright John Maddock 2008.
 
2
//  Use, modification and distribution are subject to the
 
3
//  Boost Software License, Version 1.0. (See accompanying file
 
4
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
5
 
 
6
 
 
7
#ifndef BOOST_TR1_UNORDERED_MAP_INCLUDED
 
8
#  define BOOST_TR1_UNORDERED_MAP_INCLUDED
 
9
#  include <boost/tr1/detail/config_all.hpp>
 
10
 
 
11
#  ifdef BOOST_HAS_CPP_0X
 
12
#     ifdef BOOST_HAS_INCLUDE_NEXT
 
13
#        include_next <unordered_map>
 
14
#     else
 
15
#        include BOOST_TR1_STD_HEADER(unordered_map)
 
16
#     endif
 
17
#  endif
 
18
 
 
19
#  if !defined(BOOST_TR1_NO_RECURSION)
 
20
#  define BOOST_TR1_NO_RECURSION
 
21
#  ifdef BOOST_HAS_TR1_UNORDERED_MAP
 
22
#     ifdef BOOST_HAS_INCLUDE_NEXT
 
23
#        include_next BOOST_TR1_HEADER(unordered_map)
 
24
#     else
 
25
#        include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(unordered_map))
 
26
#     endif
 
27
#  else
 
28
#     include <boost/tr1/unordered_map.hpp>
 
29
#  endif
 
30
#  undef BOOST_TR1_NO_RECURSION
 
31
#  endif
 
32
#endif
 
33
 
 
34