Skip to content

Commit

Permalink
Clang Tidy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nhjschulz committed Oct 30, 2024
1 parent 422464b commit 1f66f64
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"files.associations": {
"*.ipp": "cpp",
"bitset": "cpp",
"string_view": "cpp",
"regex": "cpp",
"condition_variable": "cpp",
"future": "cpp",
"cstdint": "cpp",
"*.tcc": "cpp"
}
}
3 changes: 2 additions & 1 deletion lib/APPTurtle/src/Transports/CustomRosTransportTcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ class CustomRosTransportTcp : public CustomRosTransportBase
m_tcpClient(),
m_inputState(InputState::INIT),
m_payloadLen(0U),
m_received(0U)
m_received(0U),
m_inputBuf()
{
}

Expand Down

0 comments on commit 1f66f64

Please sign in to comment.