$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r74151 - sandbox/SOC/2011/checks/boost/checks
From: pierre.talbot.6114_at_[hidden]
Date: 2011-08-30 07:32:20
Author: trademark
Date: 2011-08-30 07:32:20 EDT (Tue, 30 Aug 2011)
New Revision: 74151
URL: http://svn.boost.org/trac/boost/changeset/74151
Log:
Correction of a bug
Text files modified:
sandbox/SOC/2011/checks/boost/checks/modulus11.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/SOC/2011/checks/boost/checks/modulus11.hpp
==============================================================================
--- sandbox/SOC/2011/checks/boost/checks/modulus11.hpp (original)
+++ sandbox/SOC/2011/checks/boost/checks/modulus11.hpp 2011-08-30 07:32:20 EDT (Tue, 30 Aug 2011)
@@ -95,7 +95,7 @@
template <typename checkdigit>
static typename checkdigit compute_checkdigit( int checksum )
{
- return translate_checkdigit((11 - checksum % 11) % 11) ;
+ return translate_checkdigit<checkdigit>((11 - checksum % 11) % 11) ;
}
protected: