Skip to content

Commit

Permalink
Making clean code as per issue #855
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivang Vijay committed Mar 4, 2024
1 parent 191a56b commit 8148aab
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions rmw_zenoh_cpp/src/detail/type_support.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,8 @@

#include "type_support.hpp"

TypeSupport::TypeSupport()
{
max_size_bound_ = false;
is_plain_ = false;
type_size_ = 0;
}
TypeSupport::TypeSupport(): max_size_bound_(false), is_plain_(false), type_size_(0)
{}

void TypeSupport::set_name(const char * name)
{
Expand Down

0 comments on commit 8148aab

Please sign in to comment.