diff --git a/doc/conversion.html b/doc/conversion.html index c23617b..8ec3f0c 100644 --- a/doc/conversion.html +++ b/doc/conversion.html @@ -66,8 +66,9 @@ ordering. User defined types are also supported.

Reference

-

Functions are implemented inline if appropriate. noexcept is -elided for compilers that do not support it. +

Functions are implemented inline if appropriate. +For C++03 compilers, noexcept is +elided . Boost scoped enum emulation is used so that the library still works for compilers that do not support scoped enums.

 

@@ -76,7 +77,8 @@ Boost scoped enum emulation is used so that the library still works for compiler Header <boost/endian/conversion.hpp> Synopsis -
#define BOOST_ENDIAN_INTRINSIC_MSG "message describing presence or absence of intrinsics"
+
#define BOOST_ENDIAN_INTRINSIC_MSG \
+   "message describing presence or absence of intrinsics"
 
 namespace boost
 {
@@ -166,7 +168,7 @@ modifiable lvalue of type T.

T is an endian type or a class type.

If T is an endian type, returns the value of x with the order of bytes reversed.

-

If T is an class type, the function:

+

If T is a class type, the function:

Returns: x, with the order of its constituent bytes reversed.

-

Remarks: Meet the EndianReversible requirements.

+

Remarks: The type of x meets the EndianReversible requirements.

[Note: The Boost.Endian library does not provide overloads for the C++ standard library supplied types. —end note]

@@ -367,7 +369,7 @@ Pierre Talbot provided the int8_t endian_reverse() and templated endian_reverse_inplace() implementations.


Last revised: -19 January, 2015

+09 February, 2015

© Copyright Beman Dawes, 2011, 2013

Distributed under the Boost Software License, Version 1.0. See www.boost.org/ LICENSE_1_0.txt

diff --git a/doc/styles.css b/doc/styles.css index f761bcb..9d89d77 100644 --- a/doc/styles.css +++ b/doc/styles.css @@ -1,16 +1,16 @@ body { - font-family: sans-serif; + font-family: arial, sans-serif; max-width: 6.5in; margin: 0px auto; font-size: 85%; } ins {background-color: #CCFFCC;} del {background-color: #FFCACA;} - pre {background-color: #D7EEFF; font-size: 100%;} - code {font-size: 110%;} - table{font-size: 100%;} + pre {background-color: #D7EEFF; font-size: 95%; font-family: courier, serif;} + code {font-size: 110%; font-family: courier, serif;} + table {font-size: 100%;} /* © Copyright Beman Dawes, 2014