mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +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>(); }
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
@@ -107,7 +107,7 @@ static int64_t readLong(FILE *file) {
|
||||
} else { \
|
||||
tmpVal.push_back(tmpByte); \
|
||||
} \
|
||||
}; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
// Functions to parse object files
|
||||
|
||||
Reference in New Issue
Block a user