diff options
Diffstat (limited to 'src/rt/util')
| -rw-r--r-- | src/rt/util/indexed_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/util/indexed_list.h b/src/rt/util/indexed_list.h index b93945cc..d643a050 100644 --- a/src/rt/util/indexed_list.h +++ b/src/rt/util/indexed_list.h @@ -28,10 +28,10 @@ public: * object inserted in this list must define a "int32_t list_index" member. */ template<typename T> class indexed_list { - memory_region ®ion; + memory_region *region; array_list<T*> list; public: - indexed_list(memory_region ®ion) : region(region) {} + indexed_list(memory_region *region) : region(region) {} virtual int32_t append(T *value); virtual bool pop(T **value); virtual size_t length() { |