Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprince committed Sep 17, 2024
1 parent 42a3886 commit c6c3743
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Channel::Channel(const std::string name,
, position(position)
, conversion(conversion)
, samplingRate(samplingRate)
, bitVolts(bitVolts)
, comments(comments)
, bitVolts(bitVolts)
{
}

Expand Down
2 changes: 1 addition & 1 deletion tests/reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ int readerFunction(const std::string& path, const std::string& dataPath)
if (dsetSizes[0] >= dsetSizes[2]) {
return -1;
}
} catch (const FileIException& error) {
} catch (const FileIException&) {
return -1;
}

Expand Down

0 comments on commit c6c3743

Please sign in to comment.