From 2540a8707759568900ee248bb2be2b3106ad8cf3 Mon Sep 17 00:00:00 2001 From: giantpune Date: Wed, 11 Jan 2012 05:49:06 +0000 Subject: [PATCH] symbolizer: fixed compiling on g++ 1.0 for megazig git-svn-id: http://wiiqt.googlecode.com/svn/trunk@117 389f4c8b-5dfe-645f-db0e-df882bc27289 --- symbolizer/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symbolizer/main.cpp b/symbolizer/main.cpp index 126fe65..b6fdc18 100644 --- a/symbolizer/main.cpp +++ b/symbolizer/main.cpp @@ -24,8 +24,8 @@ struct KnownFunction QString debug;// just for debugging this program const ElfParser::Function *function; const ElfParser::File *file; - const quint32 addr; - const QString name;// name is only used for functinos that dont have symbols + quint32 addr; + QString name;// name is only used for functinos that dont have symbols KnownFunction( const ElfParser::Function *f = NULL, const ElfParser::File *fi = NULL, quint32 a = 0, const QString &n = QString() ) : function( f ), file( fi ), addr( a ), name( n ) {