mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-12 03:23:12 +00:00
e1644a68eb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6319 a592a061-630c-0410-9148-cb99ea01b6c8
24 lines
789 B
C++
24 lines
789 B
C++
// (C) Copyright Boost.org 2000. Permission to copy, use, modify, sell and
|
|
// distribute this software is granted provided this copyright notice appears
|
|
// in all copies. This software is provided "as is" without express or implied
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
// See http://www.boost.org/libs/utility/call_traits.htm for Documentation.
|
|
// See boost/detail/call_traits.hpp and boost/detail/ob_call_traits.hpp
|
|
// for full copyright notices.
|
|
|
|
#ifndef BOOST_CALL_TRAITS_HPP
|
|
#define BOOST_CALL_TRAITS_HPP
|
|
|
|
#ifndef BOOST_CONFIG_HPP
|
|
#include <boost/config.hpp>
|
|
#endif
|
|
|
|
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
|
#include <boost/detail/ob_call_traits.hpp>
|
|
#else
|
|
#include <boost/detail/call_traits.hpp>
|
|
#endif
|
|
|
|
#endif // BOOST_CALL_TRAITS_HPP
|