* script_sections.cc (class Memory_region): Remove "NULL" from
vector initializations.
This commit is contained in:
parent
875b4ff565
commit
4ef28648fb
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-09-16 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* script_sections.cc (class Memory_region): Remove "NULL" from
|
||||
vector initializations.
|
||||
|
||||
2010-09-15 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* incremental.cc (Output_section_incremental_inputs::write_info_blocks):
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue