source: NonGTP/Boost/boost/multi_index/detail/access_specifier.hpp @ 857

Revision 857, 1.7 KB checked in by igarcia, 18 years ago (diff)
Line 
1/* Copyright 2003-2005 Joaquín M López Muñoz.
2 * Distributed under the Boost Software License, Version 1.0.
3 * (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/multi_index for library home page.
7 */
8
9#ifndef BOOST_MULTI_INDEX_DETAIL_ACCESS_SPECIFIER_HPP
10#define BOOST_MULTI_INDEX_DETAIL_ACCESS_SPECIFIER_HPP
11
12#if defined(_MSC_VER)&&(_MSC_VER>=1200)
13#pragma once
14#endif
15
16#include <boost/config.hpp>
17#include <boost/detail/workaround.hpp>
18
19/* In those compilers that do not accept the member template friend syntax,
20 * some protected and private sections might need to be specified as
21 * public.
22 */
23
24#if defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
25#define BOOST_MULTI_INDEX_PROTECTED_IF_MEMBER_TEMPLATE_FRIENDS public
26#define BOOST_MULTI_INDEX_PRIVATE_IF_MEMBER_TEMPLATE_FRIENDS public
27#else
28#define BOOST_MULTI_INDEX_PROTECTED_IF_MEMBER_TEMPLATE_FRIENDS protected
29#define BOOST_MULTI_INDEX_PRIVATE_IF_MEMBER_TEMPLATE_FRIENDS private
30#endif
31
32/* GCC does not correctly support in-class using declarations for template
33 * functions. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9810
34 * MSVC 7.1/8.0 seem to have a similar problem, though the conditions in
35 * which the error happens are not that simple. I have yet to isolate this
36 * into a snippet suitable for bug reporting.
37 */
38
39#if BOOST_WORKAROUND(__GNUC__, <3)||\
40    BOOST_WORKAROUND(__GNUC__,==3)&&(__GNUC_MINOR__<4)||\
41    BOOST_WORKAROUND(BOOST_MSVC,==1310)||\
42    BOOST_WORKAROUND(BOOST_MSVC,==1400)
43#define BOOST_MULTI_INDEX_PRIVATE_IF_USING_DECL_FOR_TEMPL_FUNCTIONS public
44#else
45#define BOOST_MULTI_INDEX_PRIVATE_IF_USING_DECL_FOR_TEMPL_FUNCTIONS private
46#endif
47
48#endif
Note: See TracBrowser for help on using the repository browser.