Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r74270 - sandbox/SOC/2011/checks/boost/checks
From: pbristow_at_[hidden]
Date: 2011-09-06 12:29:52


Author: pbristow
Date: 2011-09-06 12:29:50 EDT (Tue, 06 Sep 2011)
New Revision: 74270
URL: http://svn.boost.org/trac/boost/changeset/74270

Log:
Undid warning 4100 code round, and corrected \mainpage
Text files modified:
   sandbox/SOC/2011/checks/boost/checks/basic_check_algorithm.hpp | 10 ++++++----
   sandbox/SOC/2011/checks/boost/checks/checks_fwd.hpp | 4 ++--
   sandbox/SOC/2011/checks/boost/checks/modulus97.hpp | 3 ++-
   sandbox/SOC/2011/checks/boost/checks/verhoeff.hpp | 1 +
   4 files changed, 11 insertions(+), 7 deletions(-)

Modified: sandbox/SOC/2011/checks/boost/checks/basic_check_algorithm.hpp
==============================================================================
--- sandbox/SOC/2011/checks/boost/checks/basic_check_algorithm.hpp (original)
+++ sandbox/SOC/2011/checks/boost/checks/basic_check_algorithm.hpp 2011-09-06 12:29:50 EDT (Tue, 06 Sep 2011)
@@ -52,7 +52,7 @@
     \returns the translation of the current value in the range [0..9].
 */
   template <typename value>
- static int translate_to_valid_value(const value &current_value, const unsigned int /* valid_value_counter */ )
+ static int translate_to_valid_value(const value &current_value, const unsigned int valid_value_counter)
   {
     int valid_value = 0;
     try{
@@ -126,7 +126,7 @@
 
     \remarks This function should be overloaded if you want to calculate the checksum of a sequence.
   */
- static void operate_on_valid_value( const int /* current_valid_value */, const unsigned int /* valid_value_counter */, int &checksum )
+ static void operate_on_valid_value( const int current_valid_value , const unsigned int valid_value_counter, int &checksum )
   {
   }
 
@@ -140,11 +140,13 @@
 
     \remarks This function should be overloaded if you want to filter the values with their positions.
   */
- static void filter_valid_value_with_pos(const unsigned int /* current_valid_value */, const unsigned int /* current_value_position */ )
+ static void filter_valid_value_with_pos(const unsigned int current_valid_value , const unsigned int current_value_position )
   {
   }
 
- /*! \class checkdigit
+ /*!
+ \class checkdigit
+
       \brief Template rebinding class used to define the type of the check digit(s) of check_range.
 
       \tparam check_range The type of the sequence to check.

Modified: sandbox/SOC/2011/checks/boost/checks/checks_fwd.hpp
==============================================================================
--- sandbox/SOC/2011/checks/boost/checks/checks_fwd.hpp (original)
+++ sandbox/SOC/2011/checks/boost/checks/checks_fwd.hpp 2011-09-06 12:29:50 EDT (Tue, 06 Sep 2011)
@@ -35,11 +35,11 @@
 
 See Boost.Checks HTML Manual at
 
- https://svn.boost.org/svn/boost/sandbox/SOC/2011/checks/doc/html/index.html
+ https://svn.boost.org/svn/boost/sandbox/SOC/2011/checks/libs/checks/doc/html/index.html
 
 and/or equivalent PDF Manual at:
 
- https://svn.boost.org/svn/boost/sandbox/SOC/2011/checks/doc/checks.pdf
+ https://svn.boost.org/svn/boost/sandbox/SOC/2011/checks/libs/checks/doc/checks.pdf
 
 Examples are in folder:
 

Modified: sandbox/SOC/2011/checks/boost/checks/modulus97.hpp
==============================================================================
--- sandbox/SOC/2011/checks/boost/checks/modulus97.hpp (original)
+++ sandbox/SOC/2011/checks/boost/checks/modulus97.hpp 2011-09-06 12:29:50 EDT (Tue, 06 Sep 2011)
@@ -29,7 +29,8 @@
 
 /*! \class modulus97_algorithm
     \brief This class can be used to compute or validate a checksum with a basic modulus 97.
- \detail The mod97-10 algorithm (ISO/IEC 7064:2003 Information technology -- Security techniques -- Check character systems) uses two check digits.
+
+ \details The mod97-10 algorithm (ISO/IEC 7064:2003 Information technology -- Security techniques -- Check character systems) uses two check digits.
 
     \tparam mod97_weight must meet the weight concept requirements.
     \tparam iteration_sense must meet the iteration_sense concept requirements.

Modified: sandbox/SOC/2011/checks/boost/checks/verhoeff.hpp
==============================================================================
--- sandbox/SOC/2011/checks/boost/checks/verhoeff.hpp (original)
+++ sandbox/SOC/2011/checks/boost/checks/verhoeff.hpp 2011-09-06 12:29:50 EDT (Tue, 06 Sep 2011)
@@ -7,6 +7,7 @@
 
 /*! \file
     \brief This file provides tools to compute a Verhoeff checksum.
+ \details See http://en.wikipedia.org/wiki/Verhoeff_algorithm
 */
 
 #ifndef BOOST_VERHOEFF_INCLUDED


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk