Remove unnecessary semicolons after closing braces

This commit is contained in:
Rangi42
2025-01-17 00:01:06 -05:00
parent f63167dd0f
commit f23a14afc7
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}; };

View File

@@ -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