$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r65787 - trunk/boost/polygon
From: lucanus.j.simonson_at_[hidden]
Date: 2010-10-06 14:38:05
Author: ljsimons
Date: 2010-10-06 14:38:03 EDT (Wed, 06 Oct 2010)
New Revision: 65787
URL: http://svn.boost.org/trac/boost/changeset/65787
Log:
fixed positive resize
Text files modified:
trunk/boost/polygon/polygon_set_data.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/polygon/polygon_set_data.hpp
==============================================================================
--- trunk/boost/polygon/polygon_set_data.hpp (original)
+++ trunk/boost/polygon/polygon_set_data.hpp 2010-10-06 14:38:03 EDT (Wed, 06 Oct 2010)
@@ -364,7 +364,7 @@
if(resizing < 0)
return shrink(-resizing);
if(resizing > 0)
- return bloat(-resizing);
+ return bloat(resizing);
return *this;
}
if(resizing == 0) return *this;