summaryrefslogtreecommitdiff
path: root/boost/mpi/detail/antiques.hpp
blob: 6ece7797770204d13d08756c27e24b3ac8deb10b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//          Copyright Alain Miniussi 2014.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

// Authors: Alain Miniussi

#ifndef BOOST_MPI_ANTIQUES_HPP
#define BOOST_MPI_ANTIQUES_HPP

#include <vector>

// Support for some obsolette compilers

namespace boost { namespace mpi {
    namespace detail {
      // Some old gnu compiler have no support for vector<>::data
      // Use this in the mean time, the cumbersome syntax should 
      // serve as an incentive to get rid of this when those compilers 
      // are dropped.
      template <typename T, typename A>
      T* c_data(std::vector<T,A>& v) { return &(v[0]); }

      template <typename T, typename A>
      T const* c_data(std::vector<T,A> const& v) { return &(v[0]); }
  
} } }

#endif