changeset 1971:ac6030c1f239

[project @ 1996-02-23 10:51:03 by jwe]
author jwe
date Fri, 23 Feb 1996 10:51:03 +0000
parents f10f66467390
children 58ac5f889c64
files src/token.cc
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/token.cc
+++ b/src/token.cc
@@ -51,12 +51,13 @@
   str = new string (s);
 }
 
-token::token (double d, const string& /* s */, int l, int c)
+token::token (double d, const string& s, int l, int c)
 {
   line_num = l;
   column_num = c;
   type_tag = double_token;
   num = d;
+  orig_text = s;
 }
 
 token::token (end_tok_type t, int l, int c)