diff options
author | Ian Lance Taylor <iant@google.com> | 2007-09-21 06:12:32 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-09-21 06:12:32 +0000 |
commit | a8b2552e073964232f2831644fef18c6a7fa52ae (patch) | |
tree | c15509bb4ac088197ea67815243fd979dac549c5 /gold/merge.h | |
parent | ca3a67a5cf313a093f28624258b1fd2201d1835e (diff) | |
download | gdb-a8b2552e073964232f2831644fef18c6a7fa52ae.zip gdb-a8b2552e073964232f2831644fef18c6a7fa52ae.tar.gz gdb-a8b2552e073964232f2831644fef18c6a7fa52ae.tar.bz2 |
Set Stringpool zero_null option via a call, not a default constructor
argument.
Diffstat (limited to 'gold/merge.h')
-rw-r--r-- | gold/merge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/merge.h b/gold/merge.h index dd97bf2..591ac91 100644 --- a/gold/merge.h +++ b/gold/merge.h @@ -169,8 +169,8 @@ class Output_merge_string : public Output_merge_base { public: Output_merge_string() - : Output_merge_base(sizeof(Char_type)), stringpool_(false), hashtable_() - { } + : Output_merge_base(sizeof(Char_type)), stringpool_(), hashtable_() + { this->stringpool_.set_no_zero_null(); } // Add an input section. bool |