~ubuntu-branches/ubuntu/trusty/deal.ii/trusty

« back to all changes in this revision

Viewing changes to contrib/boost/include/boost/fusion/view/filter_view/detail/deref_impl.hpp

  • 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: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100729134701-akb8jb3stwge8tcm
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
/*=============================================================================
 
2
    Copyright (c) 2001-2006 Joel de Guzman
 
3
 
 
4
    Distributed under the Boost Software License, Version 1.0. (See accompanying 
 
5
    file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
6
==============================================================================*/
 
7
#if !defined(FUSION_DEREF_IMPL_05062005_0905)
 
8
#define FUSION_DEREF_IMPL_05062005_0905
 
9
 
 
10
#include <boost/fusion/iterator/detail/adapt_deref_traits.hpp>
 
11
 
 
12
namespace boost { namespace fusion
 
13
{
 
14
    struct filter_view_iterator_tag;
 
15
 
 
16
    namespace extension
 
17
    {
 
18
        template <typename Tag>
 
19
        struct deref_impl;
 
20
 
 
21
        template <>
 
22
        struct deref_impl<filter_view_iterator_tag>
 
23
            : detail::adapt_deref_traits {};
 
24
    }
 
25
}}
 
26
 
 
27
#endif
 
28
 
 
29