Skip to content

Commit

Permalink
#2229: Fix style errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Jan 30, 2024
1 parent eeda352 commit d789381
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/vt-tv/api/object_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ namespace vt::tv {
* ranks or phases.
*/
struct ObjectInfo {

ObjectInfo() = default;

/**
Expand Down
1 change: 1 addition & 0 deletions src/vt-tv/api/rank.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ namespace vt::tv {
* \brief All the data for a given \c Rank
*/
struct Rank {

Rank() = default;

/**
Expand Down
4 changes: 2 additions & 2 deletions src/vt-tv/utility/qoi_serializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace nlohmann
template <>
struct adl_serializer<::vt::tv::QOIVariantTypes> {
using VariantTypes = ::vt::tv::QOIVariantTypes;

// Produce compilation error if variant types were modified
static_assert(std::is_same_v<bool, std::variant_alternative_t<0, VariantTypes>>);
static_assert(std::is_same_v<int, std::variant_alternative_t<1, VariantTypes>>);
Expand Down Expand Up @@ -82,4 +82,4 @@ namespace nlohmann

} /* end namespace nlohmann */

#endif /* INCLUDED_VT_TV_API_QOI_SERIALIZER_H */
#endif /* INCLUDED_VT_TV_API_QOI_SERIALIZER_H */
2 changes: 1 addition & 1 deletion tests/unit/lb_test_data/reader_test_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@
]
}
]
}
}

0 comments on commit d789381

Please sign in to comment.