Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/graphviz_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ typedef std::map< edge_t, Weight > expected_weights_t;

struct Fixture
{
std::string graphviz_text;
size_t correct_num_vertices;
expected_masses_t masses;
expected_weights_t weights;
std::string graphviz_text = {};
size_t correct_num_vertices = 0;
expected_masses_t masses = {};
expected_weights_t weights = {};
};

namespace Samples
Expand Down
Loading