$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56502 - sandbox/itl/boost/itl
From: afojgo_at_[hidden]
Date: 2009-10-01 09:23:03
Author: jofaber
Date: 2009-10-01 09:23:02 EDT (Thu, 01 Oct 2009)
New Revision: 56502
URL: http://svn.boost.org/trac/boost/changeset/56502
Log:
Removed trailing comma to silence CodeWarrior 9.4 warning.
Text files modified:
sandbox/itl/boost/itl/interval.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/itl/boost/itl/interval.hpp
==============================================================================
--- sandbox/itl/boost/itl/interval.hpp (original)
+++ sandbox/itl/boost/itl/interval.hpp 2009-10-01 09:23:02 EDT (Thu, 01 Oct 2009)
@@ -44,7 +44,7 @@
/// Left closed right open: <tt>[x,y)</tt>
right_open = 2,
/// Both closed: <tt>[x,y]</tt>
- closed_bounded = 3,
+ closed_bounded = 3
} ;
typedef unsigned char bound_type;