aboutsummaryrefslogtreecommitdiff
path: root/bdep/types-parsers.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-21 13:27:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-21 13:27:14 +0200
commit0f19a5033a99f9d0f786913509711189f17d612a (patch)
treea1a7d7f9da4c2a9029d0632f6c5606dd387146ae /bdep/types-parsers.cxx
parent57d7e66826ebb58945b51eac541f30823294412e (diff)
Revert no longer necessary fixes to option parsers
Diffstat (limited to 'bdep/types-parsers.cxx')
-rw-r--r--bdep/types-parsers.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/types-parsers.cxx b/bdep/types-parsers.cxx
index 42a1c73..5d0fa34 100644
--- a/bdep/types-parsers.cxx
+++ b/bdep/types-parsers.cxx
@@ -14,12 +14,12 @@ namespace bdep
static void
parse_path (T& x, scanner& s)
{
- string o (s.next ());
+ const char* o (s.next ());
if (!s.more ())
throw missing_value (o);
- string v (s.next ());
+ const char* v (s.next ());
try
{