Skip to content

Commit

Permalink
make clang tidy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminhuth committed Jul 9, 2024
1 parent 4edd192 commit cf7a231
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Examples/Io/Csv/src/CsvOutputData.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ struct ProtoTrackData {
};

struct GraphData {
std::int64_t edge0;
std::int64_t edge1;
float weight;
std::int64_t edge0 = 0;
std::int64_t edge1 = 0;
float weight = 0.0;
DFE_NAMEDTUPLE(GraphData, edge0, edge1, weight);
};

Expand Down

0 comments on commit cf7a231

Please sign in to comment.