Skip to content

Commit

Permalink
Refs #20176: Fix Win141 initialization
Browse files Browse the repository at this point in the history
Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com>
  • Loading branch information
JesusPoderoso committed Jan 11, 2024
1 parent a178b68 commit 6f464aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/cpp/dds/FlowControlExample/FlowControlExample.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class FlowControlExample

private:

std::array<char, 600000> m_message{0};
std::array<char, 600000> m_message;
char m_wasFast{0};

};
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/dds/HelloWorldExampleSharedMem/HelloWorld.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class HelloWorld

uint32_t m_index{0};
std::string m_message;
std::array<char, 1024*1024> m_data{0};
std::array<char, 1024*1024> m_data;

};

Expand Down

0 comments on commit 6f464aa

Please sign in to comment.