Compare commits

..

4 Commits

Author SHA1 Message Date
f2f7fec42c Create branch for next serialization release
[SVN r38613]
2007-08-13 03:23:47 +00:00
03a2600bf5 This commit was manufactured by cvs2svn to create tag
'Version_1_34_1'.

[SVN r38286]
2007-07-24 19:28:14 +00:00
9e9489c7bd Remove obsolete Boost.Build v1 files.
[SVN r35880]
2006-11-06 17:10:46 +00:00
73cce598c7 This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'.
[SVN r33417]
2006-03-21 02:26:31 +00:00
6 changed files with 8 additions and 33 deletions

View File

@ -6,11 +6,4 @@ doxygen reference : [ glob ../../../boost/logic/tribool.hpp ]
[ glob ../../../boost/logic/tribool_fwd.hpp ] [ glob ../../../boost/logic/tribool_fwd.hpp ]
[ glob ../../../boost/logic/tribool_io.hpp ] [ glob ../../../boost/logic/tribool_io.hpp ]
; ;
boostbook tribool 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
;

View File

@ -2,7 +2,7 @@
<!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" <!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN"
"http://www.boost.org/tools/boostbook/dtd/boostbook.dtd"> "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
<library name="Tribool" dirname="logic" id="tribool" <library name="Tribool" dirname="logic" id="tribool"
last-revision="$Date: 2007/05/03 03:28:53 $" xmlns:xi="http://www.w3.org/2001/XInclude"> last-revision="$Date: 2004/07/25 03:01:38 $" xmlns:xi="http://www.w3.org/2001/XInclude">
<libraryinfo> <libraryinfo>
<author> <author>
<firstname>Douglas</firstname> <firstname>Douglas</firstname>
@ -197,7 +197,7 @@ cout &lt;&lt; boolalpha &lt;&lt; x &lt;&lt; endl; // Prints "maybe"</programlist
</section> </section>
<xi:include href="reference.xml"/> <xi:include href="reference.boostbook"/>
<testsuite id="tribool.tests"> <testsuite id="tribool.tests">
<run-test filename="tribool_test.cpp"> <run-test filename="tribool_test.cpp">

View File

@ -93,7 +93,7 @@ public:
* *
* \throws nothrow * \throws nothrow
*/ */
tribool(bool initial_value) : value(initial_value? true_value : false_value) {} tribool(bool value) : value(value? true_value : false_value) {}
/** /**
* Construct a new 3-state boolean value with an indeterminate value. * Construct a new 3-state boolean value with an indeterminate value.
@ -336,7 +336,7 @@ inline tribool operator==(tribool x, tribool y)
if (indeterminate(x) || indeterminate(y)) if (indeterminate(x) || indeterminate(y))
return indeterminate; return indeterminate;
else else
return (x && y) || (!x && !y); return x && y || !x && !y;
} }
/** /**
@ -399,7 +399,7 @@ inline tribool operator!=(tribool x, tribool y)
if (indeterminate(x) || indeterminate(y)) if (indeterminate(x) || indeterminate(y))
return indeterminate; return indeterminate;
else else
return !((x && y) || (!x && !y)); return !(x && y || !x && !y);
} }
/** /**
@ -452,7 +452,7 @@ namespace boost {
#define BOOST_TRIBOOL_THIRD_STATE(Name) \ #define BOOST_TRIBOOL_THIRD_STATE(Name) \
inline bool \ inline bool \
Name(boost::logic::tribool x, \ Name(boost::logic::tribool x, \
boost::logic::detail::indeterminate_t = \ boost::logic::detail::indeterminate_t dummy = \
boost::logic::detail::indeterminate_t()) \ boost::logic::detail::indeterminate_t()) \
{ return x.value == boost::logic::tribool::indeterminate_value; } { return x.value == boost::logic::tribool::indeterminate_value; }

View File

@ -140,8 +140,7 @@ public:
indeterminate_name() : name_(get_default_indeterminate_name<CharT>()) {} indeterminate_name() : name_(get_default_indeterminate_name<CharT>()) {}
/// Construct the facet with the given name for the indeterminate value /// Construct the facet with the given name for the indeterminate value
explicit indeterminate_name(const string_type& initial_name) explicit indeterminate_name(const string_type& name) : name_(name) {}
: name_(initial_name) {}
/// Returns the name for the indeterminate value /// Returns the name for the indeterminate value
string_type name() const { return name_; } string_type name() const { return name_; }

View File

@ -1,16 +0,0 @@
<!--
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>

View File

@ -8,7 +8,6 @@
#include <sstream> #include <sstream>
#include <string> #include <string>
#include <iostream> #include <iostream>
#include <ios> // for std::boolalpha
#ifndef BOOST_NO_STD_LOCALE #ifndef BOOST_NO_STD_LOCALE
# include <locale> # include <locale>