symbolizer: fixed compiling on g++ 1.0 for megazig

This commit is contained in:
giantpune 2012-01-11 05:49:06 +00:00
parent 67064cb8bb
commit f0054aa05a
1 changed files with 2 additions and 2 deletions

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