diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-03-28 13:49:39 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-03-28 13:52:47 -0700 |
| commit | c141e7a068e3fbb1a5d24dcd000567b7731910bb (patch) | |
| tree | 1760a7bc92475d235e623751c6ef493bcbbe7cad /src/rt/util | |
| parent | 211d41948a9f5bb4e6f322cb8639e01439e13abf (diff) | |
| download | rust-c141e7a068e3fbb1a5d24dcd000567b7731910bb.tar.gz rust-c141e7a068e3fbb1a5d24dcd000567b7731910bb.zip | |
Fix some gcc-4.4-isms, should build now on 4.1+.
Diffstat (limited to 'src/rt/util')
| -rw-r--r-- | src/rt/util/indexed_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rt/util/indexed_list.h b/src/rt/util/indexed_list.h index feea4d5d044..d58927156a6 100644 --- a/src/rt/util/indexed_list.h +++ b/src/rt/util/indexed_list.h @@ -43,6 +43,7 @@ public: } virtual int32_t remove(T* value); virtual T * operator[](int32_t index); + virtual ~indexed_list() {} }; template<typename T> int32_t |
