Skip to content

Commit f2bde9d

Browse files
committed
Checkpoint refactoring for variables.cc.
Checkpoint my work on variables.cc and related code. I'm going to work next on finishing the refactoring of HASH_TABLE and its callers, before continuing with variables.cc.
1 parent 38a2930 commit f2bde9d

15 files changed

+1651
-1623
lines changed

array.hh

+9-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,17 @@ struct ARRAY_ELEMENT
3636
{
3737
// Construct a new array element with index and value.
3838
ARRAY_ELEMENT (arrayind_t ind_, string_view value_ = string_view ())
39-
: ind (ind_), value (to_string (value_))
39+
: ind (ind_), value (savestring (value_))
4040
{
4141
}
4242

43+
~ARRAY_ELEMENT ()
44+
{
45+
delete[] value;
46+
}
47+
4348
arrayind_t ind;
44-
std::string value;
49+
char *value;
4550

4651
#ifndef ALT_ARRAY_IMPLEMENTATION
4752
ARRAY_ELEMENT *next, *prev;
@@ -68,6 +73,7 @@ struct ARRAY
6873
delete head;
6974
}
7075

76+
// Clone the array elements.
7177
ARRAY (const ARRAY &);
7278

7379
arrayind_t
@@ -239,7 +245,7 @@ struct ARRAY
239245

240246
size_t rshift (size_t, string_view);
241247

242-
const std::string *reference (arrayind_t);
248+
char *reference (arrayind_t);
243249

244250
int insert (arrayind_t, string_view);
245251
ARRAY_ELEMENT *remove (arrayind_t);

0 commit comments

Comments
 (0)