symbolizer: fixed compiling on g++ 1.0 for megazig

git-svn-id: http://wiiqt.googlecode.com/svn/trunk@117 389f4c8b-5dfe-645f-db0e-df882bc27289
This commit is contained in:
giantpune 2012-01-11 05:49:06 +00:00
parent 54fb86682a
commit 2540a87077

View File

@ -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 )
{