Tidying
This commit is contained in:
@@ -23,7 +23,7 @@ namespace Targets::Microchip::Avr8
|
||||
using namespace Exceptions;
|
||||
|
||||
Avr8::Avr8(const TargetConfig& targetConfig, TargetDescriptionFile&& targetDescriptionFile)
|
||||
: targetConfig(Avr8TargetConfig(targetConfig))
|
||||
: targetConfig(Avr8TargetConfig{targetConfig})
|
||||
, targetDescriptionFile(std::move(targetDescriptionFile))
|
||||
, dataAddressSpaceDescriptor(this->targetDescriptionFile.getDataAddressSpaceDescriptor())
|
||||
, fuseAddressSpaceDescriptor(this->targetDescriptionFile.getFuseAddressSpaceDescriptor())
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace Targets::Microchip::Avr8
|
||||
stream << std::setw(2) << static_cast<unsigned int>(this->byteOne);
|
||||
stream << std::setw(2) << static_cast<unsigned int>(this->byteTwo);
|
||||
|
||||
return "0x" + stream.str();
|
||||
return "0x" + Services::StringService::asciiToUpper(stream.str());
|
||||
}
|
||||
|
||||
bool operator == (const TargetSignature& signature) const {
|
||||
|
||||
Reference in New Issue
Block a user