summaryrefslogtreecommitdiff
path: root/lib/binwriter.cpp
diff options
context:
space:
mode:
authorpixel <pixel>2006-02-02 14:09:48 +0000
committerpixel <pixel>2006-02-02 14:09:48 +0000
commit530453376c1cef29b7c099f4e9e8b4e4dbf99db7 (patch)
tree2ac064392f5961646987139297c27c0f0d1791c5 /lib/binwriter.cpp
parent074b784bfd03f248aa13cb50ad45479db03ba5ca (diff)
Removing a lot of warnings, as well as a bunch of terrible bugs!
Diffstat (limited to 'lib/binwriter.cpp')
-rw-r--r--lib/binwriter.cpp8
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;