Even more formatting

This commit is contained in:
Maschell
2020-05-03 12:30:15 +02:00
parent 59f361f7de
commit 8dd161b177
41 changed files with 1036 additions and 984 deletions

View File

@@ -22,19 +22,19 @@
class SectionInfo {
public:
SectionInfo(std::string name, uint32_t address, uint32_t sectionSize):
name(name),
address(address),
sectionSize(sectionSize) {
SectionInfo(std::string name, uint32_t address, uint32_t sectionSize) :
name(name),
address(address),
sectionSize(sectionSize) {
}
SectionInfo(){
SectionInfo() {
}
SectionInfo(const SectionInfo &o2):
name(o2.name),
address(o2.address),
sectionSize(o2.sectionSize) {
SectionInfo(const SectionInfo &o2) :
name(o2.name),
address(o2.address),
sectionSize(o2.sectionSize) {
}
@@ -42,7 +42,7 @@ public:
}
const std::string& getName() const {
const std::string &getName() const {
return name;
}