mirror of
https://github.com/boostorg/logic.git
synced 2025-06-26 04:21:35 +02:00
Compare commits
22 Commits
svn-branch
...
boost-1.56
Author | SHA1 | Date | |
---|---|---|---|
1dab9cd10a | |||
2afd1a9ec6 | |||
95baf1910a | |||
9f9a1e7656 | |||
aede53315c | |||
31af87e6ae | |||
5ad06c7370 | |||
c053ade60f | |||
9c4577cce3 | |||
9e230b17ef | |||
b86917fe43 | |||
987080a8c7 | |||
bd737d03b0 | |||
58cd700623 | |||
951486c794 | |||
f1d8f513bf | |||
9db33f9dcf | |||
02caed268b | |||
5749fb9ef1 | |||
03a2600bf5 | |||
9e9489c7bd | |||
73cce598c7 |
@ -7,9 +7,10 @@ doxygen reference : [ glob ../../../boost/logic/tribool.hpp ]
|
||||
[ glob ../../../boost/logic/tribool_io.hpp ]
|
||||
;
|
||||
boostbook tribool
|
||||
:
|
||||
tribool.boostbook
|
||||
:
|
||||
:
|
||||
tribool.boostbook
|
||||
:
|
||||
<xsl:param>boost.root=../../../..
|
||||
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
|
||||
<dependency>reference
|
||||
;
|
||||
;
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/detail/workaround.hpp>
|
||||
|
||||
#if BOOST_WORKAROUND(_MSC_VER, >= 1200)
|
||||
#if defined(_MSC_VER)
|
||||
# pragma once
|
||||
#endif
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <boost/detail/workaround.hpp>
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#if BOOST_WORKAROUND(_MSC_VER, >= 1200)
|
||||
#if defined(_MSC_VER)
|
||||
# pragma once
|
||||
#endif
|
||||
|
||||
@ -104,17 +104,11 @@ template<>
|
||||
inline std::basic_string<char> get_default_indeterminate_name<char>()
|
||||
{ return "indeterminate"; }
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
||||
// VC++ 6.0 chokes on the specialization below, so we're stuck without
|
||||
// wchar_t support. What a pain. TODO: it might just need a the template
|
||||
// parameter as function parameter...
|
||||
#else
|
||||
# ifndef BOOST_NO_WCHAR_T
|
||||
#ifndef BOOST_NO_WCHAR_T
|
||||
/// Returns the wide character string L"indeterminate".
|
||||
template<>
|
||||
inline std::basic_string<wchar_t> get_default_indeterminate_name<wchar_t>()
|
||||
{ return L"indeterminate"; }
|
||||
# endif
|
||||
#endif
|
||||
|
||||
// http://www.cantrip.org/locale.html
|
||||
|
16
index.html
Normal file
16
index.html
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
<!--
|
||||
Copyright 2011 Daniel James.
|
||||
Distributed under 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)
|
||||
-->
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="refresh" content="0; URL=../../doc/html/tribool.html">
|
||||
</head>
|
||||
<body>
|
||||
Automatic redirection failed, please go to
|
||||
<a href="../../doc/html/tribool.html">../../doc/html/tribool.html</a>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user