~ubuntu-branches/ubuntu/saucy/merkaartor/saucy

« back to all changes in this revision

Viewing changes to include/builtin-boost/boost/call_traits.hpp

Tags: upstream-0.15.3+svn20934
ImportĀ upstreamĀ versionĀ 0.15.3+svn20934

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
 
2
//  Use, modification and distribution are subject to the Boost Software License,
 
3
//  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
 
4
//  http://www.boost.org/LICENSE_1_0.txt).
 
5
//
 
6
//  See http://www.boost.org/libs/utility for most recent version including documentation.
 
7
 
 
8
//  See boost/detail/call_traits.hpp and boost/detail/ob_call_traits.hpp
 
9
//  for full copyright notices.
 
10
 
 
11
#ifndef BOOST_CALL_TRAITS_HPP
 
12
#define BOOST_CALL_TRAITS_HPP
 
13
 
 
14
#ifndef BOOST_CONFIG_HPP
 
15
#include <boost/config.hpp>
 
16
#endif
 
17
 
 
18
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
 
19
#include <boost/detail/ob_call_traits.hpp>
 
20
#else
 
21
#include <boost/detail/call_traits.hpp>
 
22
#endif
 
23
 
 
24
#endif // BOOST_CALL_TRAITS_HPP