From a8b2552e073964232f2831644fef18c6a7fa52ae Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 21 Sep 2007 06:12:32 +0000 Subject: Set Stringpool zero_null option via a call, not a default constructor argument. --- gold/stringpool.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gold/stringpool.cc') diff --git a/gold/stringpool.cc b/gold/stringpool.cc index 4a301fe..c0a4ae7 100644 --- a/gold/stringpool.cc +++ b/gold/stringpool.cc @@ -13,9 +13,9 @@ namespace gold { template -Stringpool_template::Stringpool_template(bool zero_null) +Stringpool_template::Stringpool_template() : string_set_(), strings_(), strtab_size_(0), next_index_(1), - zero_null_(zero_null) + zero_null_(true) { } -- cgit v1.1