summaryrefslogtreecommitdiff
path: root/src/main/portfolio_util.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2016-03-21 20:51:07 -0700
committerTim King <taking@cs.nyu.edu>2016-03-21 20:51:07 -0700
commitfa0e13c32b15b628cc812928c0fb6c094f85079d (patch)
tree5ac79f0393ef395b83cbbff2a26b7fab51610176 /src/main/portfolio_util.cpp
parent22c24eeffd7dc0e44533ccd8c2c6dc91eb77f2f3 (diff)
New version of the recursive options parsing strategy.
Diffstat (limited to 'src/main/portfolio_util.cpp')
-rw-r--r--src/main/portfolio_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/portfolio_util.cpp b/src/main/portfolio_util.cpp
index e42787fea..60d591c28 100644
--- a/src/main/portfolio_util.cpp
+++ b/src/main/portfolio_util.cpp
@@ -92,7 +92,7 @@ void parseThreadSpecificOptions(OptionsList& threadOptions, const Options& opts)
*vp++ = NULL;
if(targc > 1) { // this is necessary in case you do e.g. --thread0=" "
try {
- tOpts.parseOptions(targc, targv);
+ Options::parseOptions(&tOpts, targc, targv);
} catch(OptionException& e) {
stringstream ss;
ss << optid << ": " << e.getMessage();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback