From bb4dd8289b351fae6b55e303f189127a394a1edd Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 26 Aug 2013 08:15:55 -0400 Subject: Imported Upstream version 1.51.0 --- doc/html/tribool/reference.html | 54 ++++++++++++++++++++--------------------- doc/html/tribool/tests.html | 6 ++--- doc/html/tribool/tutorial.html | 12 ++++----- 3 files changed, 36 insertions(+), 36 deletions(-) mode change 100755 => 100644 doc/html/tribool/reference.html mode change 100755 => 100644 doc/html/tribool/tests.html mode change 100755 => 100644 doc/html/tribool/tutorial.html (limited to 'doc/html/tribool') diff --git a/doc/html/tribool/reference.html b/doc/html/tribool/reference.html old mode 100755 new mode 100644 index 2e8c07334a..6c0c98633d --- a/doc/html/tribool/reference.html +++ b/doc/html/tribool/reference.html @@ -40,27 +40,27 @@ namespace logic { class tribool; bool indeterminate(tribool, unspecified = unspecified); - tribool operator!(tribool); - tribool operator&&(tribool, tribool); - tribool operator&&(tribool, bool); - tribool operator&&(bool, tribool); - tribool operator&&(indeterminate_keyword_t, tribool); - tribool operator&&(tribool, indeterminate_keyword_t); - tribool operator||(tribool, tribool); - tribool operator||(tribool, bool); - tribool operator||(bool, tribool); - tribool operator||(indeterminate_keyword_t, tribool); - tribool operator||(tribool, indeterminate_keyword_t); - tribool operator==(tribool, tribool); - tribool operator==(tribool, bool); - tribool operator==(bool, tribool); - tribool operator==(indeterminate_keyword_t, tribool); - tribool operator==(tribool, indeterminate_keyword_t); - tribool operator!=(tribool, tribool); - tribool operator!=(tribool, bool); - tribool operator!=(bool, tribool); - tribool operator!=(indeterminate_keyword_t, tribool); - tribool operator!=(tribool, indeterminate_keyword_t); + tribool operator!(tribool); + tribool operator&&(tribool, tribool); + tribool operator&&(tribool, bool); + tribool operator&&(bool, tribool); + tribool operator&&(indeterminate_keyword_t, tribool); + tribool operator&&(tribool, indeterminate_keyword_t); + tribool operator||(tribool, tribool); + tribool operator||(tribool, bool); + tribool operator||(bool, tribool); + tribool operator||(indeterminate_keyword_t, tribool); + tribool operator||(tribool, indeterminate_keyword_t); + tribool operator==(tribool, tribool); + tribool operator==(tribool, bool); + tribool operator==(bool, tribool); + tribool operator==(indeterminate_keyword_t, tribool); + tribool operator==(tribool, indeterminate_keyword_t); + tribool operator!=(tribool, tribool); + tribool operator!=(tribool, bool); + tribool operator!=(bool, tribool); + tribool operator!=(indeterminate_keyword_t, tribool); + tribool operator!=(tribool, indeterminate_keyword_t); } } @@ -73,24 +73,24 @@ namespace logic { template<typename CharT> class indeterminate_name; template<typename T> - std::basic_string< T > get_default_indeterminate_name(); + std::basic_string< T > get_default_indeterminate_name(); // Returns the character string "indeterminate". template<> - std::basic_string< char > get_default_indeterminate_name<char >(); + std::basic_string< char > get_default_indeterminate_name<char >(); // Returns the wide character string L"indeterminate". template<> - std::basic_string< wchar_t > get_default_indeterminate_name<wchar_t >(); + std::basic_string< wchar_t > get_default_indeterminate_name<wchar_t >(); template<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & - operator<<(std::basic_ostream< CharT, Traits > &, tribool); + operator<<(std::basic_ostream< CharT, Traits > &, tribool); template<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & - operator<<(std::basic_ostream< CharT, Traits > &, unspecified); + operator<<(std::basic_ostream< CharT, Traits > &, unspecified); template<typename CharT, typename Traits> std::basic_istream< CharT, Traits > & - operator>>(std::basic_istream< CharT, Traits > &, tribool &); + operator>>(std::basic_istream< CharT, Traits > &, tribool &); } } diff --git a/doc/html/tribool/tests.html b/doc/html/tribool/tests.html old mode 100755 new mode 100644 index 425bcacc78..5500832a97 --- a/doc/html/tribool/tests.html +++ b/doc/html/tribool/tests.html @@ -6,7 +6,7 @@ - + @@ -20,7 +20,7 @@
-PrevUpHomeNext +PrevUpHomeNext

@@ -77,7 +77,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/tribool/tutorial.html b/doc/html/tribool/tutorial.html old mode 100755 new mode 100644 index de4b6b6da7..4241bc9567 --- a/doc/html/tribool/tutorial.html +++ b/doc/html/tribool/tutorial.html @@ -26,13 +26,13 @@

Tutorial

-Basic usage

+Basic usage

The tribool class acts like the built-in bool type, but for 3-state boolean logic. The three states are true, false, @@ -118,7 +118,7 @@ else {

-Renaming the indeterminate state

+Renaming the indeterminate state

Users may introduce additional keywords for the indeterminate value in addition to the implementation-supplied indeterminate using the @@ -133,7 +133,7 @@ if (maybe(x)) { /* ... */ }

-tribool input/output

+tribool input/output

tribool objects may be read from and written to streams by including the boost/logic/tribool_io.hpp header in a -- cgit v1.2.3