diff options
author | Ian Lance Taylor <iant@google.com> | 2007-12-01 06:45:21 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-12-01 06:45:21 +0000 |
commit | ae3e2ab146c03a6e2d451e9fde002a66b10ea46f (patch) | |
tree | 1ab9c32f2f0f05e788ab08cef491b3173236891a /gold/stringpool.cc | |
parent | 96803768f1845a2c5af362ea2dc6b39a147d3930 (diff) | |
download | binutils-gdb-ae3e2ab146c03a6e2d451e9fde002a66b10ea46f.tar.gz |
Add casts to avoid warnings.
Diffstat (limited to 'gold/stringpool.cc')
-rw-r--r-- | gold/stringpool.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gold/stringpool.cc b/gold/stringpool.cc index 6d3ecfa0e17..39bb9d0c358 100644 --- a/gold/stringpool.cc +++ b/gold/stringpool.cc @@ -430,8 +430,9 @@ Stringpool_template<Stringpool_char>::write_to_buffer(unsigned char* buffer, size_t bufsize) { gold_assert(this->strtab_size_ != 0); - if (bufsize < this->strtab_size_) // Quiet the compiler in opt mode. - gold_assert(bufsize >= this->strtab_size_); + // Quiet the compiler in opt mode. + if (bufsize < static_cast<size_t>(this->strtab_size_)) + gold_assert(bufsize >= static_cast<size_t>(this->strtab_size_)); if (this->zero_null_) buffer[0] = '\0'; for (typename String_set_type::const_iterator p = this->string_set_.begin(); |