mirror of
https://github.com/corda/corda.git
synced 2025-06-17 22:58:19 +00:00
remove redundant return_ type parameter
This commit is contained in:
committed by
Joshua Warner
parent
746c0fa0e8
commit
6fdd5d13ca
@ -2462,10 +2462,9 @@ class MyCompiler: public Compiler {
|
||||
return result;
|
||||
}
|
||||
|
||||
virtual void return_(ir::Type type, ir::Value* a)
|
||||
virtual void return_(ir::Value* a)
|
||||
{
|
||||
assert(&c, a->type == type);
|
||||
appendReturn(&c, type.size(), static_cast<Value*>(a));
|
||||
appendReturn(&c, a->type.size(), static_cast<Value*>(a));
|
||||
}
|
||||
|
||||
virtual void return_()
|
||||
|
Reference in New Issue
Block a user