diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-21 13:27:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-21 13:27:14 +0200 |
commit | 0f19a5033a99f9d0f786913509711189f17d612a (patch) | |
tree | a1a7d7f9da4c2a9029d0632f6c5606dd387146ae | |
parent | 57d7e66826ebb58945b51eac541f30823294412e (diff) |
Revert no longer necessary fixes to option parsers
-rw-r--r-- | bdep/types-parsers.cxx | 4 |
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 { |