diff options
author | Cary Coutant <ccoutant@google.com> | 2010-09-16 15:52:15 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2010-09-16 15:52:15 +0000 |
commit | 4ef28648fb46ee431ce3d8d5cdceb8c171b81cb9 (patch) | |
tree | 9570cae64854197a2a29cbc219ff3ed13152daa8 /gold/script-sections.cc | |
parent | 875b4ff565ff494986be7faf18f7fe575f5a5d2c (diff) | |
download | gdb-4ef28648fb46ee431ce3d8d5cdceb8c171b81cb9.zip gdb-4ef28648fb46ee431ce3d8d5cdceb8c171b81cb9.tar.gz gdb-4ef28648fb46ee431ce3d8d5cdceb8c171b81cb9.tar.bz2 |
* script_sections.cc (class Memory_region): Remove "NULL" from
vector initializations.
Diffstat (limited to 'gold/script-sections.cc')
-rw-r--r-- | gold/script-sections.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/script-sections.cc b/gold/script-sections.cc index 1a19ad8..eebbb5e 100644 --- a/gold/script-sections.cc +++ b/gold/script-sections.cc @@ -55,8 +55,8 @@ class Memory_region length_(length), current_vma_offset_(0), current_lma_offset_(0), - vma_sections_(NULL), - lma_sections_(NULL) + vma_sections_(), + lma_sections_() { } // Return the name of this region. |