Remove unnecessary default constructor definitions

This commit is contained in:
Rangi42
2025-02-14 16:35:27 +01:00
committed by Rangi
parent 1489854932
commit ad4d9da4cf
2 changed files with 0 additions and 18 deletions

View File

@@ -31,15 +31,6 @@
struct StrFmtArgList {
std::string format;
std::vector<Either<uint32_t, std::string>> args;
StrFmtArgList() = default;
StrFmtArgList(StrFmtArgList &&) = default;
#ifdef _MSC_VER
// MSVC and WinFlexBison won't build without this...
StrFmtArgList(StrFmtArgList const &) = default;
#endif
StrFmtArgList &operator=(StrFmtArgList &&) = default;
};
}