mirror of
https://github.com/corda/corda.git
synced 2025-02-02 17:21:06 +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*);
|
callR(Context*, unsigned, Assembler::Register*);
|
||||||
|
|
||||||
void
|
void
|
||||||
callC(Context* c, unsigned size, Assembler::Constant* a)
|
callC(Context* c, unsigned size UNUSED, Assembler::Constant* a)
|
||||||
{
|
{
|
||||||
assert(c, size == BytesPerWord);
|
assert(c, size == BytesPerWord);
|
||||||
|
|
||||||
@ -360,7 +360,7 @@ jumpR(Context* c, unsigned size UNUSED, Assembler::Register* a)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
jumpC(Context* c, unsigned size, Assembler::Constant* a)
|
jumpC(Context* c, unsigned size UNUSED, Assembler::Constant* a)
|
||||||
{
|
{
|
||||||
assert(c, size == BytesPerWord);
|
assert(c, size == BytesPerWord);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user