From 0f19a5033a99f9d0f786913509711189f17d612a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 21 Mar 2018 13:27:14 +0200 Subject: Revert no longer necessary fixes to option parsers --- bdep/types-parsers.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bdep/types-parsers.cxx') 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 { -- cgit v1.1