diff options
Diffstat (limited to 'lib/binwriter.cpp')
-rw-r--r-- | lib/binwriter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/binwriter.cpp b/lib/binwriter.cpp index 5896315..dd7c712 100644 --- a/lib/binwriter.cpp +++ b/lib/binwriter.cpp @@ -17,18 +17,18 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: binwriter.cpp,v 1.1 2005-12-02 11:28:27 pixel Exp $ */ +/* $Id: binwriter.cpp,v 1.2 2006-02-02 14:09:49 pixel Exp $ */ #include <binwriter.h> #include <binary.h> void BinWriter::merge(void) { - Section * iter, * sub_iter; + Section * iter; std::vector<Section *> merged; std::vector<Section *> to_merge; std::vector<Section *>::iterator i; - bool is_in, did_merge, pure_bss, is_before_us; - Uint32 base, real_size, whole_size, end_address, sub_size; + bool is_in, pure_bss; + Uint32 base, real_size, whole_size, end_address; for (iter = Section::GetFirst(); iter; iter = iter->GetNext()) { is_in = false; |