mirror of
https://github.com/corda/corda.git
synced 2025-01-22 04:18:31 +00:00
fix unused parameter warnings
This commit is contained in:
parent
9f8d77a2a9
commit
5e45475f36
@ -536,7 +536,7 @@ popM(Context* c, unsigned size, Assembler::Memory* a)
|
||||
}
|
||||
|
||||
void
|
||||
negateR(Context* c, unsigned size, Assembler::Register* a)
|
||||
negateR(Context* c, unsigned size UNUSED, Assembler::Register* a)
|
||||
{
|
||||
assert(c, BytesPerWord == 8 or size == 4); // todo
|
||||
|
||||
@ -895,7 +895,7 @@ addRM(Context* c, unsigned size UNUSED, Assembler::Register* a,
|
||||
}
|
||||
|
||||
void
|
||||
multiplyRR(Context* c, unsigned size, Assembler::Register* a,
|
||||
multiplyRR(Context* c, unsigned size UNUSED, Assembler::Register* a,
|
||||
Assembler::Register* b)
|
||||
{
|
||||
assert(c, BytesPerWord == 8 or size == 4); // todo
|
||||
|
Loading…
Reference in New Issue
Block a user