~ubuntu-branches/debian/sid/boost1.49/sid

« back to all changes in this revision

Viewing changes to libs/config/test/no_0x_hdr_array_pass.cpp

  • Committer: Package Import Robot
  • Author(s): Steve M. Robbins
  • Date: 2012-02-26 00:31:44 UTC
  • Revision ID: package-import@ubuntu.com-20120226003144-eaytp12cbf6ubpms
Tags: upstream-1.49.0
ImportĀ upstreamĀ versionĀ 1.49.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  This file was automatically generated on Fri May 15 12:10:32 2009
 
2
//  by libs/config/tools/generate.cpp
 
3
//  Copyright John Maddock 2002-4.
 
4
//  Use, modification and distribution are subject to the 
 
5
//  Boost Software License, Version 1.0. (See accompanying file 
 
6
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
7
 
 
8
//  See http://www.boost.org/libs/config for the most recent version.//
 
9
//  Revision $Id: no_0x_hdr_array_pass.cpp 53445 2009-05-30 11:22:59Z bemandawes $
 
10
//
 
11
 
 
12
 
 
13
// Test file for macro BOOST_NO_0X_HDR_ARRAY
 
14
// This file should compile, if it does not then
 
15
// BOOST_NO_0X_HDR_ARRAY should be defined.
 
16
// See file boost_no_0x_hdr_array.ipp for details
 
17
 
 
18
// Must not have BOOST_ASSERT_CONFIG set; it defeats
 
19
// the objective of this file:
 
20
#ifdef BOOST_ASSERT_CONFIG
 
21
#  undef BOOST_ASSERT_CONFIG
 
22
#endif
 
23
 
 
24
#include <boost/config.hpp>
 
25
#include "test.hpp"
 
26
 
 
27
#ifndef BOOST_NO_0X_HDR_ARRAY
 
28
#include "boost_no_0x_hdr_array.ipp"
 
29
#else
 
30
namespace boost_no_0x_hdr_array = empty_boost;
 
31
#endif
 
32
 
 
33
int main( int, char *[] )
 
34
{
 
35
   return boost_no_0x_hdr_array::test();
 
36
}
 
37