Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <Martijn.Govers@Alliander.com>
  • Loading branch information
mgovers committed Jul 16, 2024
1 parent eeceac0 commit 0b64f1a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/cpp_unit_tests/test_dataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,34 +31,34 @@ struct BScOutput {};
} // namespace

template <> struct get_attributes_list<AInput> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<AUpdate> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<AOutput<symmetric_t>> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<AOutput<asymmetric_t>> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<AScOutput> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<BInput> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<BUpdate> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<BOutput<symmetric_t>> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<BOutput<asymmetric_t>> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};
template <> struct get_attributes_list<BScOutput> {
static constexpr std::array<MetaAttribute, 0> value;
static constexpr std::array<MetaAttribute, 0> value{};
};

namespace {
Expand Down

0 comments on commit 0b64f1a

Please sign in to comment.