Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72782 - sandbox/SOC/2011/checks/boost/checks
From: pierre.talbot.6114_at_[hidden]
Date: 2011-06-28 05:41:55


Author: trademark
Date: 2011-06-28 05:41:54 EDT (Tue, 28 Jun 2011)
New Revision: 72782
URL: http://svn.boost.org/trac/boost/changeset/72782

Log:
Modification of the prototypes
Text files modified:
   sandbox/SOC/2011/checks/boost/checks/checks_fwd.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

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-06-28 05:41:54 EDT (Tue, 28 Jun 2011)
@@ -88,11 +88,11 @@
     template <class In>
     char isbn10_check_digit(In isbn_begin, In isbn_end);
 
- template <class In>
- inline bool check_luhn(const In &begin, const In &end, unsigned int nbr_digits=0);
+ template <typename In>
+ inline bool check_luhn(In &begin, const In &end, unsigned int nbr_digits=0);
         
- template <class In>
- inline In check_mod11(In begin, In end, unsigned int nbr_digits=0);
+ template <typename In>
+ inline bool check_mod11(In &begin, const In end, unsigned int nbr_digits=0);
 
   }
 }
\ No newline at end of file


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