aboutsummaryrefslogtreecommitdiff
path: root/libcommon
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-03 14:12:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-03 14:12:48 +0200
commitb9161e6e332cb0279ef8616dbbce4c90b60bce15 (patch)
tree2462cb423cd9b62a7179def871420760bf3c6d98 /libcommon
parent8d7db5926bc4764cc368570ea9b64e354c13f671 (diff)
New tests
Diffstat (limited to 'libcommon')
-rw-r--r--libcommon/options.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/libcommon/options.cxx b/libcommon/options.cxx
index 2a2280d..9d15251 100644
--- a/libcommon/options.cxx
+++ b/libcommon/options.cxx
@@ -429,7 +429,8 @@ namespace cli
parse (std::vector<X>& c, bool& xs, scanner& s)
{
X x;
- parser<X>::parse (x, s);
+ bool dummy;
+ parser<X>::parse (x, dummy, s);
c.push_back (x);
xs = true;
}
@@ -442,7 +443,8 @@ namespace cli
parse (std::set<X>& c, bool& xs, scanner& s)
{
X x;
- parser<X>::parse (x, s);
+ bool dummy;
+ parser<X>::parse (x, dummy, s);
c.insert (x);
xs = true;
}