mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Remove unnecessary semicolons after closing braces
This commit is contained in:
@@ -41,7 +41,7 @@ struct FileStackNode {
|
|||||||
std::string const &name() const { return data.get<std::string>(); }
|
std::string const &name() const { return data.get<std::string>(); }
|
||||||
|
|
||||||
FileStackNode(FileStackNodeType type_, Either<std::vector<uint32_t>, std::string> data_)
|
FileStackNode(FileStackNodeType type_, Either<std::vector<uint32_t>, std::string> data_)
|
||||||
: type(type_), data(data_){};
|
: type(type_), data(data_) {}
|
||||||
|
|
||||||
std::string const &dump(uint32_t curLineNo) const;
|
std::string const &dump(uint32_t curLineNo) const;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ static int64_t readLong(FILE *file) {
|
|||||||
} else { \
|
} else { \
|
||||||
tmpVal.push_back(tmpByte); \
|
tmpVal.push_back(tmpByte); \
|
||||||
} \
|
} \
|
||||||
}; \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
// Functions to parse object files
|
// Functions to parse object files
|
||||||
|
|||||||
Reference in New Issue
Block a user