diff options
author | David 'Digit' Turner <digit@android.com> | 2010-09-22 14:19:28 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2010-09-22 14:19:28 +0200 |
commit | 4e024bb4f5c8aa8b07459f7fbd65c35122127fd1 (patch) | |
tree | ccd5835eef17757d3e1c069e391c415c0135023d /elff/dwarf_defs.h | |
parent | 1d9873b37d2478554d9d678cd410bd3638c8dab3 (diff) | |
download | external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.zip external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.tar.gz external_qemu-4e024bb4f5c8aa8b07459f7fbd65c35122127fd1.tar.bz2 |
Remove compiler warnings when building the emulator.
This forces -Wall during the build. Note that this patch doesn't
remove all warnings, but most of the remaining ones are from upstream anyway.
Change-Id: I8808d8495e99866e156ce5780d2e3c305eab491f
Diffstat (limited to 'elff/dwarf_defs.h')
-rw-r--r-- | elff/dwarf_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elff/dwarf_defs.h b/elff/dwarf_defs.h index 567df6a..04573e2 100644 --- a/elff/dwarf_defs.h +++ b/elff/dwarf_defs.h @@ -717,9 +717,9 @@ class DwarfAbbrDieArray { * hopping, that all Dwarf_Abbr_DIEs for the CU will fit into it.
*/
DwarfAbbrDieArray()
- : count_(0),
+ : array_(&small_array_[0]),
array_size_(ELFF_ARRAY_SIZE(small_array_)),
- array_(&small_array_[0]) {
+ count_(0) {
}
/* Destructs DwarfAbbrDieArray instance. */
|