Skip to content

Commit ace58d6

Browse files
committed
Remove redundant namespace references
Signed-off-by: methylDragon <[email protected]>
1 parent 1cf75f3 commit ace58d6

File tree

78 files changed

+1010
-1008
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1010
-1008
lines changed

include/ignition/gazebo/EntityComponentManager.hh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
#include <map>
2424
#include <memory>
25+
#include <optional>
2526
#include <set>
2627
#include <string>
2728
#include <typeinfo>

include/ignition/gazebo/detail/EntityComponentManager.hh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#include <cstring>
2121
#include <map>
22+
#include <optional>
2223
#include <set>
2324
#include <type_traits>
2425
#include <utility>

src/Component_TEST.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ TEST_F(ComponentTest, OStream)
321321
EXPECT_EQ("Mass: 0", ostr.str());
322322
}
323323

324-
// Component with a ignition::msgs type that gets serialized by the default
324+
// Component with a msgs type that gets serialized by the default
325325
// serializer
326326
{
327327
using Custom = components::Component<msgs::Int32, class CustomTag,
@@ -473,7 +473,7 @@ TEST_F(ComponentTest, IStream)
473473
EXPECT_DOUBLE_EQ(200, comp.Data()->MassMatrix().Mass());
474474
}
475475

476-
// Component with a ignition::msgs type that gets deserialized by the message
476+
// Component with a msgs type that gets deserialized by the message
477477
// deserializer
478478
{
479479
using Custom = components::Component<msgs::Int32, class CustomTag,

0 commit comments

Comments
 (0)