Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/mpl/test/no_has_xxx.cpp @ 45

Last change on this file since 45 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 723 bytes
Line 
1
2// Copyright Aleksey Gurtovoy 2000-2004
3// Copyright David Abrahams 2003
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
9// See http://www.boost.org/libs/mpl for documentation.
10
11// $Source: /cvsroot/boost/boost/libs/mpl/test/no_has_xxx.cpp,v $
12// $Date: 2004/09/02 15:41:35 $
13// $Revision: 1.2 $
14
15
16// This file tests that we have the right value for
17// BOOST_MPL_CFG_NO_HAS_XXX, and that 'has_xxx' doesn't just fail to
18// compile arbitrarily.
19
20#include <boost/mpl/aux_/config/has_xxx.hpp>
21
22#if defined(BOOST_MPL_CFG_NO_HAS_XXX)
23#   define HAS_XXX_ASSERT(x) MPL_ASSERT_NOT(x)
24#endif
25
26#include "has_xxx.cpp"
Note: See TracBrowser for help on using the repository browser.