diff src/lex.l @ 3536:e8fbc8c3d6d9

[project @ 2000-02-02 12:01:00 by jwe]
author jwe
date Wed, 02 Feb 2000 12:01:08 +0000
parents b80bbb43a1a9
children 0ff7323dab8b
line wrap: on
line diff
--- a/src/lex.l
+++ b/src/lex.l
@@ -850,7 +850,7 @@
 // Check to see if a character string matches any of the possible line
 // styles for plots.
 
-static string
+static std::string
 plot_style_token (const std::string& s)
 {
   std::string retval;
@@ -896,7 +896,7 @@
 // Check to see if a character string matches any of the possible axes
 // tags for plots.
 
-static string
+static std::string
 plot_axes_token (const std::string& s)
 {
   std::string retval;
@@ -1444,7 +1444,7 @@
 
 // Used to delete trailing white space from tokens.
 
-static string
+static std::string
 strip_trailing_whitespace (char *s)
 {
   std::string retval = s;