Skip to content

Commit d149bb7

Browse files
authored
Modify argument type (#91)
1 parent 646ca52 commit d149bb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

micro_ros_agent/src/agent/graph_manager/graph_typesupport.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ParticipantEntitiesInfoTypeSupport::ParticipantEntitiesInfoTypeSupport()
4141
ss << "dds_::" << message_name << "_";
4242
this->setName(ss.str().c_str());
4343

44-
bool full_bounded = true;
44+
char full_bounded;
4545
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
4646
}
4747

@@ -133,7 +133,7 @@ MicrorosGraphInfoTypeSupport::MicrorosGraphInfoTypeSupport()
133133
ss << "dds_::" << message_name << "_";
134134
this->setName(ss.str().c_str());
135135

136-
bool full_bounded = true;
136+
char full_bounded;
137137
m_typeSize = 4 + callbacks_->max_serialized_size(full_bounded);
138138
}
139139

0 commit comments

Comments
 (0)