Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small cleanup fixes #211

Merged
merged 3 commits into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions include/ignition/launch/Plugin.hh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ namespace ignition
/// \brief Base class for launch plugins.
class Plugin
{
// Default destructor
public virtual ~Plugin() {};
nkoenig marked this conversation as resolved.
Show resolved Hide resolved
nkoenig marked this conversation as resolved.
Show resolved Hide resolved

/// \brief Load function that each launch plugin must implement.
/// \param[in] _elem Pointer to the XML for this plugin.
/// \return True to keep the plugin alive. Return false to have the
Expand Down
2 changes: 2 additions & 0 deletions plugins/websocket_server/MessageDefinitions.hh.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#ifndef IGNITION_LAUNCH_WEBSOCKETSERVER_MESSAGEDEFINITIONS_HH_
#define IGNITION_LAUNCH_WEBSOCKETSERVER_MESSAGEDEFINITIONS_HH_

#include <string>

namespace ignition
{
namespace launch
Expand Down