ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/mon.cpp
(Generate patch)

Comparing mon/src/mon.cpp (file contents):
Revision 1.15 by cebix, 2002-01-18T16:03:33Z vs.
Revision 1.17 by gbeauche, 2002-03-18T13:40:20Z

# Line 96 | Line 96 | static char *cmd_help;         // Help text for
96  
97  
98   // List of variables
99 < typedef map<string, uint32> var_map;
99 > typedef std::map<std::string, uint32> var_map;
100   static var_map vars;
101  
102  
# Line 394 | Line 394 | static enum Token get_hex_number(uint32
394                  return T_NULL;
395  
396          do {
397 +                c = tolower(c);
398                  if (c < 'a')
399                          i = (i << 4) + (c - '0');
400                  else
# Line 787 | Line 788 | static void set_var(void)
788                  }
789  
790          } else if (mon_token == T_NAME) {
791 <                string var_name = mon_name;
791 >                std::string var_name = mon_name;
792                  mon_get_token();
793                  if (mon_token == T_ASSIGN) {
794  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines