|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r67123 - sandbox/configurator/boost/configurator
From: for.dshevchenko_at_[hidden]
Date: 2010-12-08 23:40:50
Author: dshevchenko
Date: 2010-12-08 23:40:48 EST (Wed, 08 Dec 2010)
New Revision: 67123
URL: http://svn.boost.org/trac/boost/changeset/67123
Log:
Small bug fix in get_value_of()
Text files modified:
sandbox/configurator/boost/configurator/configurator.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/configurator/boost/configurator/configurator.hpp
==============================================================================
--- sandbox/configurator/boost/configurator/configurator.hpp (original)
+++ sandbox/configurator/boost/configurator/configurator.hpp 2010-12-08 23:40:48 EST (Wed, 08 Dec 2010)
@@ -132,7 +132,7 @@
>
Value get_value_of() {
const std::string value_as_string = get_value_of< Option >();
- Value value();
+ Value value;
try {
value = boost::lexical_cast< Value >( value_as_string );
} catch ( const std::exception& /* exc */ ) {
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