Skip to content

Commit

Permalink
Fixing compilation
Browse files Browse the repository at this point in the history
Signed-off-by: Nate Koenig <[email protected]>
  • Loading branch information
nkoenig committed Jan 16, 2024
1 parent 25c856d commit 370d2f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/gazebo_server/GazeboServer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ bool GazeboServer::Load(const tinyxml2::XMLElement *_elem)
}

// Create and run the simulation server
this->server.reset(new sim::Server(serverConfig));
this->server.reset(new gz::sim::Server(serverConfig));
this->server->Run(false, 0, !run);

igndbg << "Loaded GazeboServer plugin.\n";
Expand Down
2 changes: 1 addition & 1 deletion plugins/gazebo_server/GazeboServer.hh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ namespace ignition
const tinyxml2::XMLElement *_elem) override final;

/// \brief Private data pointer
private: std::unique_ptr<sim::Server> server;
private: std::unique_ptr<gz::sim::Server> server;
};
}
}
Expand Down

0 comments on commit 370d2f6

Please sign in to comment.