Removed redundant 'Bloom' namespace from entire codebase
This commit is contained in:
@@ -6,21 +6,18 @@
|
||||
|
||||
#include "src/Targets/TargetMemory.hpp"
|
||||
|
||||
namespace Bloom
|
||||
class EnumToStringMappings
|
||||
{
|
||||
class EnumToStringMappings
|
||||
{
|
||||
public:
|
||||
static const inline BiMap<Targets::TargetMemoryType, QString> targetMemoryTypes = {
|
||||
{Targets::TargetMemoryType::RAM, "ram"},
|
||||
{Targets::TargetMemoryType::EEPROM, "eeprom"},
|
||||
{Targets::TargetMemoryType::FLASH, "flash"},
|
||||
{Targets::TargetMemoryType::OTHER, "other"},
|
||||
};
|
||||
|
||||
static const inline BiMap<Targets::TargetMemoryEndianness, QString> targetMemoryEndianness = {
|
||||
{Targets::TargetMemoryEndianness::LITTLE, "little"},
|
||||
{Targets::TargetMemoryEndianness::BIG, "big"},
|
||||
};
|
||||
public:
|
||||
static const inline BiMap<Targets::TargetMemoryType, QString> targetMemoryTypes = {
|
||||
{Targets::TargetMemoryType::RAM, "ram"},
|
||||
{Targets::TargetMemoryType::EEPROM, "eeprom"},
|
||||
{Targets::TargetMemoryType::FLASH, "flash"},
|
||||
{Targets::TargetMemoryType::OTHER, "other"},
|
||||
};
|
||||
}
|
||||
|
||||
static const inline BiMap<Targets::TargetMemoryEndianness, QString> targetMemoryEndianness = {
|
||||
{Targets::TargetMemoryEndianness::LITTLE, "little"},
|
||||
{Targets::TargetMemoryEndianness::BIG, "big"},
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user