Move default parameter to h

This commit is contained in:
ballessay 2017-04-13 16:24:23 +02:00 committed by C. Balles
parent 3bdb0b2aba
commit e72976ff55
2 changed files with 2 additions and 2 deletions

View File

@ -702,7 +702,7 @@ void QRCore::setOptions(QString key)
// anal plugin
}
void QRCore::setCPU(QString arch, QString cpu, int bits, bool temporary = false)
void QRCore::setCPU(QString arch, QString cpu, int bits, bool temporary)
{
config("asm.arch", arch);
config("asm.cpu", cpu);

View File

@ -79,7 +79,7 @@ public:
QString assemble(const QString &code);
QString disassemble(const QString &hex);
void setDefaultCPU();
void setCPU(QString arch, QString cpu, int bits, bool temporary);
void setCPU(QString arch, QString cpu, int bits, bool temporary = false);
RAnalFunction *functionAt(ut64 addr);
QString cmdFunctionAt(QString addr);
/* sdb */