diff options
-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 5d0fa34..42a1c73 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) { - const char* o (s.next ()); + string o (s.next ()); if (!s.more ()) throw missing_value (o); - const char* v (s.next ()); + string v (s.next ()); try { |