This commit is contained in:
Nav
2024-02-15 21:25:32 +00:00
parent 7e9e28286f
commit a09de592f4
3 changed files with 2 additions and 12 deletions

View File

@@ -85,7 +85,7 @@ namespace Targets::TargetDescription
: std::nullopt;
}
const AddressSpace & TargetDescriptionFile::getAddressSpace(std::string_view key) const {
const AddressSpace& TargetDescriptionFile::getAddressSpace(std::string_view key) const {
const auto addressSpace = this->tryGetAddressSpace(key);
if (!addressSpace.has_value()) {

View File

@@ -104,8 +104,8 @@ namespace Targets::TargetDescription
protected:
std::map<std::string, std::string> deviceAttributesByName;
std::map<std::string, AddressSpace, std::less<void>> addressSpacesByKey;
std::map<std::string, PropertyGroup, std::less<void>> propertyGroupsByKey;
std::map<std::string, AddressSpace, std::less<void>> addressSpacesByKey;
std::vector<PhysicalInterface> physicalInterfaces;
std::map<std::string, Module> modulesMappedByName;
std::map<std::string, Module> peripheralModulesMappedByName;