Clear Inspection Report problems.

This commit is contained in:
Beman
2014-12-17 17:48:54 -05:00
parent 48ea9cc333
commit 25143c6b9a
5 changed files with 25 additions and 10 deletions

View File

@ -70,6 +70,10 @@ flip (verb)
: to move (something) with a quick light movement : to move (something) with a quick light movement
--------------------------------------------------
Copyright Beman Dawes, 2014
Distributed under the Boost Software License, Version 1.0.
See www.boost.org/LICENSE_1_0.txt

View File

@ -3,7 +3,7 @@
<head> <head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document"> <meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Endian Mini-Review</title> <title>Endian Mini-Review</title>
</head> </head>
<link href="styles.css" rel="stylesheet"> <link href="styles.css" rel="stylesheet">
@ -58,13 +58,14 @@ portable base implementations, and to compare endian integer approaches
against endian conversion approaches for the common use case scenarios.</b></p> against endian conversion approaches for the common use case scenarios.</b></p>
<blockquote> <blockquote>
<p>Done. See <a href="index.html#Timings">Timings for Example 2</a>. The <code>endian/test</code> directory <p>Done. See <a href="index.html#Timings">Timings for Example 2</a>. The <code>endian/test</code> directory
also contains several addional benchmark and speed test programs.</p> also contains several additional benchmark and speed test programs.</p>
</blockquote> </blockquote>
<p><b>Float (32-bits) and double (64-bits) should be supported. IEEE 754 is <p><b>Float (32-bits) and double (64-bits) should be supported. IEEE 754 is
the primary use case.</b></p> the primary use case.</b></p>
<blockquote> <blockquote>
<p>Done. The <a href="types.html">endian types</a> and <p>Done. The <a href="buffers.html">endian buffer types</a>,&nbsp;
<a href="conversion.html">endian conversion</a> functions now support 32-bit (<code>float)</code> <a href="arithmetic.html">endian arithmetic types</a> and
<a href="conversion.html">endian conversion functions</a> now support 32-bit (<code>float)</code>
and 64-bit <code>(double)</code> floating point, as requested.</p> and 64-bit <code>(double)</code> floating point, as requested.</p>
</blockquote> </blockquote>
<p><b>Support for user defined types (UDTs) is desirable, and should be <p><b>Support for user defined types (UDTs) is desirable, and should be
@ -99,7 +100,7 @@ might used inadvertently or inappropriately. The impact of adding an endian_buff
<hr> <hr>
<p>Last revised: <p>Last revised:
<!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->17 December, 2014<!--webbot bot="Timestamp" endspan i-checksum="38647" --></p> <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->17 December, 2014<!--webbot bot="Timestamp" endspan i-checksum="38647" --></p>
<p><EFBFBD> Copyright Beman Dawes, 2014</p> <p>© Copyright Beman Dawes, 2014</p>
<p>Distributed under the Boost Software License, Version 1.0. See <p>Distributed under the Boost Software License, Version 1.0. See
<a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/ LICENSE_1_0.txt</a></p> <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/ LICENSE_1_0.txt</a></p>

View File

@ -1,8 +1,8 @@
copy /y c:\boost\modular\develop\libs\endian\doc\* d:\boost\endian-gh-pages copy /y c:\boost\modular\develop\libs\endian\doc\* d:\boost\endian-gh-pages
pushd d:\boost\endian-gh-pages pushd d:\boost\endian-gh-pages
git commit -a -m "sync with develop" git commit -a -m "copy from develop"
git push git push
popd popd
rem Copyright Beman Dawes, 2013 rem Copyright Beman Dawes, 2014
rem Distributed under the Boost Software License, Version 1.0. rem Distributed under the Boost Software License, Version 1.0.
rem See www.boost.org/LICENSE_1_0.txt rem See www.boost.org/LICENSE_1_0.txt

View File

@ -10,4 +10,10 @@ body
pre {background-color: #D7EEFF; font-size: 100%;} pre {background-color: #D7EEFF; font-size: 100%;}
code {font-size: 110%;} code {font-size: 110%;}
table{font-size: 100%;} table{font-size: 100%;}
/*
© Copyright Beman Dawes, 2014
Distributed under the Boost Software License, Version 1.0.
See www.boost.org/LICENSE_1_0.txt
*/

View File

@ -4,7 +4,7 @@
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document"> <meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Endian Library Do List</title> <title>Endian Library Do List</title>
</head> </head>
@ -13,7 +13,7 @@
<h1>Endian Library TODO List</h1> <h1>Endian Library TODO List</h1>
<p>Last revised: <p>Last revised:
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->15 December, 2014<!--webbot bot="Timestamp" endspan i-checksum="38643" --></p> <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->17 December, 2014<!--webbot bot="Timestamp" endspan i-checksum="38647" --></p>
<p><b>August 12, 2014: The many items that have been completed should be <p><b>August 12, 2014: The many items that have been completed should be
removed, after verifying that they are in fact taken care of.</b></p> removed, after verifying that they are in fact taken care of.</b></p>
@ -224,7 +224,11 @@ types that mimic FP types is far beyond my knowledge of how to deal<br>
with floating point's notorious arithmetic issues.</p> with floating point's notorious arithmetic issues.</p>
<p>Support IEEE754 format (32 bit, 64 bit) only.</p> <p>Support IEEE754 format (32 bit, 64 bit) only.</p>
<hr> <hr>
<p>&nbsp;</p> <p>Last revised:
<!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B, %Y" startspan -->17 December, 2014<!--webbot bot="Timestamp" endspan i-checksum="38647" --></p>
<p>© Copyright Beman Dawes, 2012</p>
<p>Distributed under the Boost Software License, Version 1.0. See
<a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a></p>
<p>&nbsp;</p> <p>&nbsp;</p>
</body> </body>