Update of /cvsroot/boost/boost/libs/config/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25309/libs/config/test

Added Files:
        boost_has_concepts.ipp boost_has_rvalue_refs.ipp 
        boost_has_static_assert.ipp boost_has_variadic_tmpl.ipp 
Log Message:
Fix C++0x helper macros

--- NEW FILE: boost_has_concepts.ipp ---
//  Copyright (C) 2007 Douglas Gregor
//  Use, modification and distribution are subject to 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)

//  See http://www.boost.org/libs/config for most recent version.

//  MACRO:         BOOST_HAS_CONCEPTS
//  TITLE:         concepts
//  DESCRIPTION:   The compiler supports C++0x concepts

namespace boost_has_concepts {

concept C<typename T> { }

concept_map C<int> { }

int test()
{
   return 0;
}

}

--- NEW FILE: boost_has_rvalue_refs.ipp ---
//  Copyright (C) 2007 Douglas Gregor
//  Use, modification and distribution are subject to 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)

//  See http://www.boost.org/libs/config for most recent version.

//  MACRO:         BOOST_HAS_RVALUE_REFS
//  TITLE:         rvalue references
//  DESCRIPTION:   The compiler supports C++0x rvalue references

namespace boost_has_rvalue_refs {

void g(int&) {}

template<typename F, typename T>
void forward(F f, T&& t) { f(static_cast<T&&>(t)); }

int test()
{
   int x;
   forward(g, x);
   return 0;
}

}

--- NEW FILE: boost_has_static_assert.ipp ---
//  Copyright (C) 2007 Douglas Gregor
//  Use, modification and distribution are subject to 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)

//  See http://www.boost.org/libs/config for most recent version.

//  MACRO:         BOOST_HAS_STATIC_ASSERT
//  TITLE:         static assertions
//  DESCRIPTION:   The compiler supports C++0x static assertions

namespace boost_has_static_assert {

int test()
{
   static_assert(true, "OK");
   return 0;
}

}

--- NEW FILE: boost_has_variadic_tmpl.ipp ---
//  Copyright (C) 2007 Douglas Gregor
//  Use, modification and distribution are subject to 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)

//  See http://www.boost.org/libs/config for most recent version.

//  MACRO:         BOOST_HAS_VARIADIC_TMPL
//  TITLE:         variadic templates
//  DESCRIPTION:   The compiler supports C++0x variadic templates

namespace boost_has_variadic_tmpl {

template<typename... Elements> struct tuple {};

int test()
{
   return 0;
}

}


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to