|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r65873 - sandbox/chrono/boost/static_integer
From: vicente.botet_at_[hidden]
Date: 2010-10-10 10:09:19
Author: viboes
Date: 2010-10-10 10:09:18 EDT (Sun, 10 Oct 2010)
New Revision: 65873
URL: http://svn.boost.org/trac/boost/changeset/65873
Log:
Static_Integer:
* FIx template parameter for static_unsigned_abs
Text files modified:
sandbox/chrono/boost/static_integer/static_abs.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/chrono/boost/static_integer/static_abs.hpp
==============================================================================
--- sandbox/chrono/boost/static_integer/static_abs.hpp (original)
+++ sandbox/chrono/boost/static_integer/static_abs.hpp 2010-10-10 10:09:18 EDT (Sun, 10 Oct 2010)
@@ -42,7 +42,7 @@
X < 0 ? -X : X>
{};
- template <static_abs_unsigned_type X>
+ template <static_abs_signed_type X>
struct static_unsigned_abs
: integral_constant<static_abs_unsigned_type,
X < 0 ? -X : X>
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