Fix for slightly mangled merge.
--HG-- extra : convert_revision : 1dea04ca222dd423c3d462114bc1c65afa52825d
This commit is contained in:
parent
b82fa633bb
commit
9375caa3f1
1 changed files with 3 additions and 2 deletions
|
@ -228,9 +228,10 @@ class FillNOther : public EnumeratedFault<FillNOther>
|
||||||
|
|
||||||
class TrapInstruction : public EnumeratedFault<TrapInstruction>
|
class TrapInstruction : public EnumeratedFault<TrapInstruction>
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TrapInstruction(uint32_t n, uint64_t syscall) :
|
TrapInstruction(uint32_t n) :
|
||||||
EnumeratedFault<TrapInstruction>(n), syscall_num(syscall) {;}
|
EnumeratedFault<TrapInstruction>(n) {;}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue