General: Make parameter names from declarations and implementations consistent

Most of the time when this occurs, it's a bug. Thankfully this isn't the
case. However, we can resolve these cases to make the codebase more
consistent.
This commit is contained in:
Lioncash 2019-05-24 01:59:04 -04:00 committed by MerryMage
parent b301fcd520
commit 182ceb2807
8 changed files with 24 additions and 24 deletions

View file

@ -10,12 +10,12 @@
namespace Dynarmic::A32 {
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& loc) {
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor) {
o << fmt::format("{{{:08x},{},{},{:08x}}}",
loc.PC(),
loc.TFlag() ? "T" : "!T",
loc.EFlag() ? "E" : "!E",
loc.FPSCR().Value());
descriptor.PC(),
descriptor.TFlag() ? "T" : "!T",
descriptor.EFlag() ? "E" : "!E",
descriptor.FPSCR().Value());
return o;
}