mirror of
https://github.com/corda/corda.git
synced 2025-01-23 04:48:09 +00:00
fix unused parameter warning
This commit is contained in:
parent
ecfb853f17
commit
3b0e05b739
@ -301,7 +301,7 @@ void
|
||||
callR(Context*, unsigned, Assembler::Register*);
|
||||
|
||||
void
|
||||
callC(Context* c, unsigned size, Assembler::Constant* a)
|
||||
callC(Context* c, unsigned size UNUSED, Assembler::Constant* a)
|
||||
{
|
||||
assert(c, size == BytesPerWord);
|
||||
|
||||
@ -360,7 +360,7 @@ jumpR(Context* c, unsigned size UNUSED, Assembler::Register* a)
|
||||
}
|
||||
|
||||
void
|
||||
jumpC(Context* c, unsigned size, Assembler::Constant* a)
|
||||
jumpC(Context* c, unsigned size UNUSED, Assembler::Constant* a)
|
||||
{
|
||||
assert(c, size == BytesPerWord);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user