Fixed format

This commit is contained in:
emeric
2024-09-08 13:50:43 +02:00
parent 95a5b58f48
commit da22843272
2 changed files with 2 additions and 2 deletions
@@ -33,7 +33,7 @@ namespace lms::db
IdType() = default;
IdType(ValueType id)
: _id{ id } { }
: _id{ id } {}
bool isValid() const { return _id != Wt::Dbo::dbo_default_traits::invalidId(); }
std::string toString() const
@@ -115,7 +115,7 @@ namespace lms::db
{
std::vector<ClusterId> clusters; // if non empty, releases that belong to these clusters
std::vector<std::string_view> keywords; // if non empty, name must match all of these keywords (cannot be set with keywords)
std::string name; // must match this name (cannot be set with keywords)
std::string name; // must match this name (cannot be set with keywords)
ReleaseSortMethod sortMethod{ ReleaseSortMethod::None };
std::optional<Range> range;
Wt::WDateTime writtenAfter;