Fixup unused parameter warnings

This CL removes the current parameters which are unused in order to
fixup the issued clang warnings.
This commit is contained in:
Dan Sinclair
2018-10-24 09:54:45 -04:00
parent a08f465d53
commit 70f13b2ed5
2 changed files with 3 additions and 3 deletions

View File

@@ -208,7 +208,7 @@ void Builder::postProcess(const Instruction& inst)
}
// Called for each instruction in a reachable block.
void Builder::postProcessReachable(const Instruction& inst)
void Builder::postProcessReachable(const Instruction&)
{
// did have code here, but questionable to do so without deleting the instructions
}