diff options
author | 2010-08-27 18:00:58 +0000 | |
---|---|---|
committer | 2010-08-27 18:00:58 +0000 | |
commit | b56648ad4f60540f9b2a6b71ced34d1128232b61 (patch) | |
tree | 8a793dd694756909f2cf975ac901df82691b8fdd /gold/incremental.h | |
parent | * testsuite/start_lib_test_3.c: Mark t3 as used. (diff) | |
download | binutils-gdb-b56648ad4f60540f9b2a6b71ced34d1128232b61.tar.gz binutils-gdb-b56648ad4f60540f9b2a6b71ced34d1128232b61.tar.bz2 binutils-gdb-b56648ad4f60540f9b2a6b71ced34d1128232b61.zip |
* incremental.h (class Incremental_input_entry): Add virtual
destructor.
Diffstat (limited to 'gold/incremental.h')
-rw-r--r-- | gold/incremental.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gold/incremental.h b/gold/incremental.h index c1f3c990894..2f5e068c873 100644 --- a/gold/incremental.h +++ b/gold/incremental.h @@ -241,6 +241,10 @@ class Incremental_input_entry : filename_key_(filename_key), offset_(0), info_offset_(0), mtime_(mtime) { } + virtual + ~Incremental_input_entry() + { } + // Return the type of input file. Incremental_input_type type() const |